123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % Compact Academic CV
- % Structural Definitions
- % Version 1.0 (6/7/2019)
- %
- % This template originates from:
- % https://www.LaTeXTemplates.com
- %
- % Authors:
- % Dario Taraborelli (http://nitens.org/taraborelli/home)
- % Vel (vel@LaTeXTemplates.com)
- %
- % License:
- % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
- %
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %----------------------------------------------------------------------------------------
- % REQUIRED PACKAGES AND MISC CONFIGURATIONS
- %----------------------------------------------------------------------------------------
- \usepackage{graphicx} % Required for including images
- \setlength{\parindent}{0pt} % Stop paragraph indentation
- %----------------------------------------------------------------------------------------
- % MARGINS
- %----------------------------------------------------------------------------------------
- \usepackage{geometry} % Required for adjusting page dimensions and margins
- \geometry{
- paper=a4paper, % Paper size, change to letterpaper for US letter size
- top=3.25cm, % Top margin
- bottom=4cm, % Bottom margin
- left=3.5cm, % Left margin
- right=3.5cm, % Right margin
- headheight=0.75cm, % Header height
- footskip=1cm, % Space from the bottom margin to the baseline of the footer
- headsep=0.75cm, % Space from the top margin to the baseline of the header
- %showframe, % Uncomment to show how the type block is set on the page
- }
- %----------------------------------------------------------------------------------------
- % FONTS
- %----------------------------------------------------------------------------------------
- \usepackage[utf8]{inputenc} % Required for inputting international characters
- \usepackage[T1]{fontenc} % Output font encoding for international characters
- \usepackage[semibold]{ebgaramond} % Use the EB Garamond font with a reduced bold weight
- %----------------------------------------------------------------------------------------
- % SECTION STYLING
- %----------------------------------------------------------------------------------------
- \usepackage{sectsty} % Allows changing the font options for sections in a document
- \sectionfont{\fontsize{13.5pt}{18pt}\selectfont} % Set font options for sections
- \subsectionfont{\mdseries\scshape\normalsize} % Set font options for subsections
- \subsubsectionfont{\mdseries\upshape\bfseries\normalsize} % Set font options for subsubsections
- %----------------------------------------------------------------------------------------
- % MARGIN YEARS
- %----------------------------------------------------------------------------------------
- \usepackage{marginnote} % Required to output text in the margin
- \newcommand{\years}[1]{\marginnote{\scriptsize #1}} % New command for adding years to the margin
- \renewcommand*{\raggedleftmarginnote}{} % Left-align the years in the margin
- \setlength{\marginparsep}{-10pt} % Move the margin content closer to the text
- \reversemarginpar % Margin text to be output into the left margin instead of the default right margin
- %----------------------------------------------------------------------------------------
- % COLOURS
- %----------------------------------------------------------------------------------------
- \usepackage[usenames, dvipsnames]{xcolor} % Required for specifying colours by name
- %----------------------------------------------------------------------------------------
- % LINKS
- %----------------------------------------------------------------------------------------
- \usepackage[bookmarks, colorlinks, breaklinks]{hyperref} % Required for links
- % Set link colours
- \hypersetup{
- linkcolor=blue,
- citecolor=blue,
- filecolor=black,
- urlcolor=MidnightBlue
- }
|