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

Feature References #313

Closed
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
## Mac OS X metadata files:
*.DS_Store

### PDF
# Ignore PDF files generated during build
*.pdf
6 changes: 3 additions & 3 deletions awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,17 @@
% Configuration for fonts
%-------------------------------------------------------------------------------
% Set the FontAwesome font to be up-to-date.
\newfontfamily\FA[Path=\@fontdir]{FontAwesome}
\setfontfamily\FA[Path=\@fontdir]{FontAwesome}
% Set font for header (default is Roboto)
\newfontfamily\headerfont[
\setfontfamily\headerfont[
Path=\@fontdir,
UprightFont=*-Regular,
ItalicFont=*-Italic,
BoldFont=*-Bold,
BoldItalicFont=*-BoldItalic,
]{Roboto}

\newfontfamily\headerfontlight[
\setfontfamily\headerfontlight[
Path=\@fontdir,
UprightFont=*-Thin,
ItalicFont=*-ThinItalic,
Expand Down
Binary file removed examples/coverletter.pdf
Binary file not shown.
Binary file removed examples/cv.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions examples/cv.tex
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
\input{cv/presentation.tex}
\input{cv/writing.tex}
\input{cv/committees.tex}
\input{references/references.tex}


%-------------------------------------------------------------------------------
Expand Down
35 changes: 35 additions & 0 deletions examples/references/references.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
\newpage\cvsection{References}

\begin{cventries}

%---------------------------------------------------------
\cventry
{Position~~~·~~~Company Name} % Position-Orginization
{Reference Name} % Name
{Relationship} % Relationship
{[email protected]} % Email
{555-555-5555} % Mobile

%---------------------------------------------------------
\cventry
{Software Engineer~~~·~~~Microsoft} % Position-Orginization
{John Doe} % Name
{Former Supervisor} % Relationship
{[email protected]} % Email
{555-555-5555} % Mobile

%---------------------------------------------------------
\cventry
{Software Engineer} % Position-Orginization
{John Doe} % Name
{Microsoft} % Organization
{[email protected]} % Email
{
\begin{cvitems} % Relationship, Phone number, etc.
\item{Former Supervisor} % Relationship
\item{555-555-5555} % Mobile
\end{cvitems}
}

%---------------------------------------------------------
\end{cventries}
Binary file removed examples/resume.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions examples/resume.tex
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
\input{resume/committees.tex}
\input{resume/education.tex}
\input{resume/extracurricular.tex}
\input{references/references.tex}


%-------------------------------------------------------------------------------
Expand Down