Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In altacv.cls - cvsection should accept 3 arguments and show the 3rd one #1

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
1 change: 1 addition & 0 deletions .#resume.org
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.tex
*.pdf
*.xmpi
.*~ # Emacs backup files
.# # Emacs backup files
29 changes: 0 additions & 29 deletions aidan.bib

This file was deleted.

Binary file removed aidan_portrait.jpeg
Binary file not shown.
4 changes: 2 additions & 2 deletions altacv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@

\renewenvironment{quote}{\color{accent}\itshape\large}{\par}

\newcommand{\cvsection}[2][]{%
\newcommand{\cvsection}[3][]{%
\bigskip%
\ifstrequal{#1}{}{}{\marginpar{\vspace*{\dimexpr1pt-\baselineskip}\raggedright\input{#1}}}%
{\color{heading}\cvsectionfont\MakeUppercase{#2}}\\[-1ex]%
{\color{heading}\cvsectionfont\MakeUppercase{#3}}\\[-1ex]%
{\color{headingrule}\rule{\linewidth}{2pt}\par}\medskip
}

Expand Down
Binary file added portrait.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions references.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@inproceedings{aidan2020,
title = {Trajectory Optimisation in Learned Multimodal Dynamical
Systems via Latent-ODE Collocation},
author = {Scannell, Aidan and Hernik, Carl Ek and Richards, Arthur},
year = 2020
}
45 changes: 45 additions & 0 deletions resume.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
(add-to-list 'org-latex-classes
'("altacv"
"\\documentclass[10pt,a4paper,ragged2e,withhyper]{altacv}

% Change the page layout if you need to
\\geometry{left=1.25cm,right=1.25cm,top=1.5cm,bottom=1.5cm,columnsep=1.2cm}

% Use roboto and lato for fonts
\\renewcommand{\\familydefault}{\\sfdefault}

% Change the colours if you want to
\\definecolor{SlateGrey}{HTML}{2E2E2E}
\\definecolor{LightGrey}{HTML}{666666}
\\definecolor{DarkPastelRed}{HTML}{450808}
\\definecolor{PastelRed}{HTML}{8F0D0D}
\\definecolor{GoldenEarth}{HTML}{E7D192}
\\colorlet{name}{black}
\\colorlet{tagline}{PastelRed}
\\colorlet{heading}{DarkPastelRed}
\\colorlet{headingrule}{GoldenEarth}
\\colorlet{subheading}{PastelRed}
\\colorlet{accent}{PastelRed}
\\colorlet{emphasis}{SlateGrey}
\\colorlet{body}{LightGrey}

% Change some fonts, if necessary
\\renewcommand{\\namefont}{\\Huge\\rmfamily\\bfseries}
\\renewcommand{\\personalinfofont}{\\footnotesize}
\\renewcommand{\\cvsectionfont}{\\LARGE\\rmfamily\\bfseries}
\\renewcommand{\\cvsubsectionfont}{\\large\\bfseries}

% Change the bullets for itemize and rating marker
% for \cvskill if you want to
\\renewcommand{\\itemmarker}{{\\small\\textbullet}}
\\renewcommand{\\ratingmarker}{\\faCircle}
"
("\\cvsection{%s}" . "\\cvsection*{%s}")
("\\cvevent{%s}" . "\\cvevent*{%s}")))

(setq org-latex-default-packages-alist
'(("rm" "roboto" t)
("defaultsans" "lato" t)
("" "paracol" t)))

(setq org-latex-packages-alist 'nil)
Loading