-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcv-sheet.tex
90 lines (75 loc) · 2.61 KB
/
cv-sheet.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
\documentclass[10pt]{article}
%Packages
\usepackage{multicol}
\usepackage{calc}
\usepackage{ifthen}
\usepackage{hyperref}
\usepackage{sectsty}
\usepackage{xcolor}
\usepackage{geometry}
\usepackage{enumitem}
\usepackage{amsmath,amssymb,amsfonts,mathrsfs}
\usepackage{titlesec}
\usepackage{booktabs}
\usepackage{everysel}
% This sets page margins to .5 inch if using letter paper, and to 1cm
% if using A4 paper. (This probably isn't strictly necessary.)
% If using another size paper, use default 1cm margins.
\ifthenelse{\lengthtest { \paperwidth = 11in}}
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
}
% Turn off header and footer
\pagestyle{empty}
%Define color for section titles
\definecolor[named]{secColor}{wave}{395}
% Redefine section commands to use less space
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%x
{\normalfont\large\bfseries}}
\renewcommand{\subsection}{\@startsection{subsection}{2}{0mm}%
{-1explus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%
{\normalfont\normalsize\bfseries}}
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{1ex plus .2ex}%
{\normalfont\footnotesize\bfseries}}
\makeatother
% Don't print section numbers
\setcounter{secnumdepth}{0}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt plus 0.5ex}
%Color math expressions.
\definecolor{myblue}{cmyk}{1,.72,0,.38}
\everymath{\color{myblue}}
\everydisplay{\color{myblue}}
%Remove left margin of lists & spaces between items
\setlist[itemize]{leftmargin=*, noitemsep}
\setlist[enumerate]{leftmargin=*, noitemsep}
% -----------------------------------------------------------------------
\begin{document}
\raggedright
\footnotesize
\begin{center}
\large{\textsc{CV Cheat Sheet}} \\
\end{center}
\begin{multicols*}{3}
% multicol parameters
% These lengths are set only within the main columns
% \setlength{\columnseprule}{0.25pt}
\setlength{\premulticols}{2pt}
\setlength{\postmulticols}{2pt}
\setlength{\multicolsep}{5pt}
\setlength{\columnsep}{5pt}
\input{images.tex}
\input{arithmetic.tex}
\input{geometric.tex}
\input{filters.tex}
% \input{maths.tex}
\end{multicols*}
\end{document}