-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.tex
144 lines (115 loc) · 4.35 KB
/
cv.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
\documentclass[11pt,english]{curve}
\PassOptionsToPackage{backend=biber,
style=apa,
labeldate=year,
sorting=ndymdt,
uniquename=init,
defernumbers=true}{biblatex}
% Most commands and style definitions are in settings.sty.
\usepackage{settings}
% Package to display your ORCID id
\usepackage{orcidlink}
% Packages to use icons
\usepackage{academicons}
\usepackage{graphicx} % required for scalebox
% Package for date time
\usepackage{datetime2}
\DTMsetdatestyle{iso}
% Package to show a frame around the body of the doc
% Usefule for visualizing the margins of the doc
% comment out or delete after using
%\usepackage{showframe}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\geometry{includefoot}
\makeatletter
\renewcommand{\@evenfoot}{\hfill\thepage\hfill}
\renewcommand{\@oddfoot}{\hfill\thepage\hfill}
\makeatother
%\makeatletter
%\renewcommand{\@oddfoot}{\hfill\color{gray}\tiny\texttt{Last Updated: \DTMnow}}
%\makeatother
\setlength{\footskip}{20pt}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% If you need to further customise your biblatex setup e.g. with \DeclareFieldFormat etc please add them here AFTER loading settings.sty. For example, to remove the default "[Online] Available:" prefix before URLs when using the IEEE style:
\DefineBibliographyStrings{english}{url={\textsc{url}}}
% Define a custom bibliography style for the @unpublished entry in the .bib
% @unpublished refers to presentations/meetings/workshops in Zotero
% I wanted to display the date of the workshop as well as where it was held
% Which by the apa style does not do by default in biblatex
\DeclareBibliographyDriver{unpublished}{%
\printnames{author}%
\newunit\newblock
{\setunit{\addspace\bibopenparen}}{\usebibmacro{date}\bibcloseparen}%
\newunit\newblock
\printfield{title}%
\newunit\newblock
\printfield{type}
\newunit\newblock
\usebibmacro{event+venue+date}%
\finentry}
%% Only needed if you want a Publication List
\addbibresource{my-pubs.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mynames{Antaya/Andrew,
Antaya/Andrew\bibnamedelima M.}
%% MAKE SURE THERE IS NO SPACE AFTER THE FINAL NAME IN YOUR \mynames LIST
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Change the fonts if you want
\ifxetexorluatex % If you're using XeLaTeX or LuaLaTeX
\usepackage{fontspec}
%% You can use \setmainfont etc; I'm just using these font packages here because they provide OpenType fonts for use by XeLaTeX/LuaLaTeX anyway
\usepackage[p,osf,swashQ]{cochineal}
\usepackage[medium,bold]{cabin}
\usepackage[varqu,varl,scale=0.9]{zi4}
\else % If you're using pdfLaTeX or latex
\usepackage[T1]{fontenc}
\usepackage[p,osf,swashQ]{cochineal}
\usepackage{cabin}
\usepackage[varqu,varl,scale=0.9]{zi4}
\fi
% Change the page margins if you want
% \geometry{left=1cm,right=1cm,top=1.5cm,bottom=1.5cm}
% Change the colours if you want
% \definecolor{SwishLineColour}{HTML}{00FFFF}
% \definecolor{MarkerColour}{HTML}{0000CC}
% Change the item prefix marker if you want
% \prefixmarker{$\diamond$}
%% Photo is only shown if "fullonly" is included
%% \includecomment{fullonly}
\excludecomment{fullonly}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\leftheader{%
{\LARGE\bfseries\sffamily Andrew M. Antaya, M.S. \orcidlink{0000-0002-6067-9807}}
\vspace{1em}
\makefield{\faEnvelope[regular]}{\href{mailto:aantaya@arizona.edu}{\texttt{aantaya@arizona.edu}}}
%
\makefield{\faTwitter}{\href{https://twitter.com/andrew_antaya}{\texttt{@andrew\_antaya}}}
%
\makefield{\faGithub}{\href{https://github.com/amantaya}{\texttt{amantaya}}}
%
\makefield{\faGlobe}{\url{https://andrewantaya.com/}}
% You can use a tabular here if you want to line up the fields.
}
\rightheader{~}
\begin{fullonly}
\photo[r]{photo}
\photoscale{0.13}
\end{fullonly}
\title{Curriculum Vitae}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makeheaders[c]
\makerubric{education}
\makerubric{employment}
\input{publications}
\newpage
\makerubric{skills}
\makerubric{service}
\makerubric{referee}
% \input{referee-full}
% add a small gray timestamp to the lower right corner
% this will help tell when the document was last updated
% and help with managing versions of the document
{\vfill\hfill\color{gray}\tiny\texttt{Last Updated: \DTMNow}}
\end{document}