posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.07k stars 4.79k forks source link

Add list of professional references #94

Closed thiagoveloso closed 7 years ago

thiagoveloso commented 7 years ago

This CV is literally awesome, very close to perfection (at least for my needs).

To make it even better, could anyone help me add a list of professional references by the end of the CV?

I've found a discussion with a potential solution here: (http://tex.stackexchange.com/questions/34881/references-section-in-a-cv). But adapting it to this Awesome-CV template is far beyond my (basic) Latex skills.

Can anyone more proficient give a little hand?

Thank you in advance!

johannesbottcher commented 7 years ago

Crosspost

thiagoveloso commented 7 years ago

Managed to solve by following this: https://www.overleaf.com/latex/templates/awesome-cv/tvmzpvdjfqxp#comment-2563071701

Miail commented 7 years ago

Could you provide with the solution here.. The link doesn't seem to show the comment discussing the topic.

bibbca commented 6 years ago

Linked comment no longer exists. Please reopen issue.

dangom commented 6 years ago

This was the suggested hack written as a comment:

\cvsection{References}

\bigskip
\descriptionstyle{
  \begin{cvitems}
  \item \textbf{Referee 1.} Address, email.
  \item \textbf{Referee 2.} Address, email.
  \end{cvitems}
}
aklife97 commented 5 years ago

The following code snippet is the modified version of stack exchange code to work with Awesome CV

\cvsection{References}

\newcommand{\cvdoublecolumn}[2]{%
    \begin{minipage}[t]{{.45\linewidth}}#1\end{minipage}%
    \hfill%
    \begin{minipage}[t]{{.45\linewidth}}#2\end{minipage}%
}

\newcommand{\cvreference}[7]{%
    \textbf{#1}\newline% Name
    \ifthenelse{\equal{#2}{}}{}{#2\newline}%
    \ifthenelse{\equal{#3}{}}{}{#3\newline}%
    \ifthenelse{\equal{#4}{}}{}{#4\newline}%
    \ifthenelse{\equal{#5}{}}{}{#5\newline}%
    \ifthenelse{\equal{#6}{}}{}{\faEnvelope\acvHeaderIconSep~\texttt{#6}\newline}%
    \ifthenelse{\equal{#7}{}}{}{#7}}

\cvdoublecolumn{\cvreference{Nicolai Reshetikhin}
    {Department of Mathematics}
    {University of California}
    {Berkeley, CA 94720-3840}
    {}
    {reshetik@math.berkeley.edu}
    {510-643-6234}%
    }
    {\cvreference{Mikhail Khovanov}
    {Department of Mathematics}
    {Columbia University}
    {990 Broadway}
    {New York, NY 10027}
    {khovanov@columbia.edu}
    {212-854-4186}%
    }
tdelhomme commented 5 years ago

@aklife97 thanks for the code, that's perfect!

mbuet2ner commented 4 years ago

Building on top of @aklife97 code snippet, I added a few modifications to closer align the style with the template.

\cvsection{References}

\newcommand{\cvdoublecolumn}[2]{%
    \begin{minipage}[t]{{.45\linewidth}}#1\end{minipage}%
    \hfill%
    \begin{minipage}[t]{{.45\linewidth}}#2\end{minipage}%
}

\newcommand{\cvreference}[7]{%
    \entrytitlestyle{#1}\newline% Name
    \ifthenelse{\equal{#2}{}}{}{#2\newline}%
    \ifthenelse{\equal{#3}{}}{}{#3\newline}%
    \ifthenelse{\equal{#4}{}}{}{#4\newline}%
    \ifthenelse{\equal{#5}{}}{}{\faHome\acvHeaderIconSep~#5\newline}%
    \ifthenelse{\equal{#6}{}}{}{\href{mailto:#6}{\faEnvelope\acvHeaderIconSep~#6\newline}}%
    \ifthenelse{\equal{#7}{}}{}{\faMobile\acvHeaderIconSep~#7\newline}}

\cvdoublecolumn{\cvreference{Best reference}
    {Department of Superiority}
    {University of the Universe}
    {}
    {Address 42, 4242}
    {mail@mail.mail}
    {1337}%
}
{\cvreference{Best reference}
    {Department of Superiority}
    {University of the Universe}
    {}
    {Address 42, 4242}
    {mail@mail.mail}
    {1337}%
}

Result: grafik

StefanVeleski commented 4 years ago

@mbuet2ner That's great! Is there any way to decrease the size of the font though? The built in font size macros (\footnotesize, \tiny, \small etc.) don't work within the template.

mbuet2ner commented 4 years ago

@StefanVeleski glad you like it. I have no idea to be honest. Maybe check for some predefined text snippet in the class file?

sanjay032 commented 3 years ago

The following code snippet is the modified version of stack exchange code to work with Awesome CV

\cvsection{References}

\newcommand{\cvdoublecolumn}[2]{%
    \begin{minipage}[t]{{.45\linewidth}}#1\end{minipage}%
    \hfill%
    \begin{minipage}[t]{{.45\linewidth}}#2\end{minipage}%
}

\newcommand{\cvreference}[7]{%
    \textbf{#1}\newline% Name
    \ifthenelse{\equal{#2}{}}{}{#2\newline}%
    \ifthenelse{\equal{#3}{}}{}{#3\newline}%
    \ifthenelse{\equal{#4}{}}{}{#4\newline}%
    \ifthenelse{\equal{#5}{}}{}{#5\newline}%
    \ifthenelse{\equal{#6}{}}{}{\faEnvelope\acvHeaderIconSep~\texttt{#6}\newline}%
    \ifthenelse{\equal{#7}{}}{}{#7}}

\cvdoublecolumn{\cvreference{Nicolai Reshetikhin}
    {Department of Mathematics}
    {University of California}
    {Berkeley, CA 94720-3840}
    {}
    {reshetik@math.berkeley.edu}
    {510-643-6234}%
    }
    {\cvreference{Mikhail Khovanov}
    {Department of Mathematics}
    {Columbia University}
    {990 Broadway}
    {New York, NY 10027}
    {khovanov@columbia.edu}
    {212-854-4186}%
    }

love it. Thanks

VladimirSiv commented 3 years ago

@StefanVeleski To change the style you can use predefined styles: https://github.com/posquit0/Awesome-CV/blob/4be6c213c8631a1fd68d1ad452e88b722b911f78/awesome-cv.cls#L186-L200

or you can define your own.

Here's an example:

\cvsection{References}

\newcommand*{\emaillink}[1]{{\fontsize{8pt}{1em}\bodyfont\scshape\color{awesome} #1}}

\newcommand{\cvdoublecolumn}[2]{%
    \begin{minipage}[t]{{.45\linewidth}}#1\end{minipage}%
    \hfill%
    \begin{minipage}[t]{{.45\linewidth}}#2\end{minipage}%
}

\newcommand{\cvreference}[5]{
    \entrytitlestyle{#1}\newline
    \descriptionstyle{#2}\newline
    \descriptionstyle{#3}\newline
    \faHome\acvHeaderIconSep~\descriptionstyle{#4}\newline
    \href{mailto:#5}{\faEnvelope\acvHeaderIconSep~\emaillink{#5}\newline}}

\cvdoublecolumn{\cvreference{Best reference}
    {Department of Superiority}
    {University of the Universe}
    {Address 42, 4242}
    {mail@mail.mail}
}
{\cvreference{Best reference}
    {Department of Superiority}
    {University of the Universe}
    {Address 42, 4242}
    {mail@mail.mail}
}

I hope this helps.