Hi,
Ok I get what you want now! In order to do this I defined a new command called
\entrytwo
which is used when you have two diplomas from two universities. This command is then placed right after where the first
\entry
command is defined in
friggeri-cv.cls
and looks like this:
Code: Select all
\newcommand{\entrytwo}[7]{%
#1&\parbox[t]{11.8cm}{%
\textbf{#2}\\%
\textbf{#3}
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #4}\\%
\textbf{#5}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #6}\\%
#7\vspace{\parsep}%
}\\}
You can then use this command in your CV as follows:
Code: Select all
\entrytwo
{2011--2012}
{Double Diploma}
{Diploma {\normalfont of Writing}}
{University 1}
{Diploma {\normalfont of Reading}}
{University 2}
{\emph{Money Is The Root Of All Evil -- Or Is It?} \
This thesis explored the idea that money has been the cause of
untold anguish and suffering in the world. I found that it has,
in fact, not.}
Cheers,
Vel