Friggeri Resume template: problem of having several nested items inside an entrylist
The entrylist
environment and \entry
command are defined like this in friggeri-cv
:
\newenvironment{entrylist}{%
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll}
}{%
\end{tabular*}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\newcommand{\entry}[4]{%
#1&\parbox[t]{11.8cm}{%
\textbf{#2}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #3}\\%
#4\vspace{\parsep}%
}\\}
A deadly combo of tabular*
and \parbox
and none of these allow page breaks. Hence your only option is to re-define them like
%------------
\usepackage{enumitem}
\renewenvironment{entrylist}{%
\begin{itemize}[leftmargin=1in]%[leftmargin=*,align=left,itemindent=-\dimexpr\labelwidth+\labelindent+\labelsep\relax]
}{%
\end{itemize}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\renewcommand{\entry}[4]{%
\item[#1]
\textbf{#2}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #3}\\%
#4\vspace{\parsep}%
}
%-------
Since we are loading the enumitem
package, you may adjust the spacing between items with
begin{itemize}[itemsep=<whatever you want>]
Adjust as suitable.
Here is the full code:
\documentclass[]{friggeri-cv} % Add 'print' as an option into the square bracket to remove colors from this template for printing
\addbibresource{bibliography.bib} % Specify the bibliography file to include publications
%------------
\usepackage{enumitem}
\renewenvironment{entrylist}{%
\begin{itemize}[leftmargin=1in]%[leftmargin=*,align=left,itemindent=-\dimexpr\labelwidth+\labelindent+\labelsep\relax]
}{%
\end{itemize}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\renewcommand{\entry}[4]{%
\item[#1]
\textbf{#2}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #3}\\%
#4\vspace{\parsep}%
}
%-------
\begin{document}
\header{john}{smith}{junior business analyst} % Your name and current job title/field
%----------------------------------------------------------------------------------------
% SIDEBAR SECTION
%----------------------------------------------------------------------------------------
\begin{aside} % In the aside, each new line forces a line break
\section{contact}
123 Broadway
City, State 12345
Country
~
+0 (000) 111 1111
+0 (000) 111 1112
~
\href{mailto:[email protected]}{[email protected]}
\href{http://www.smith.com}{http://www.smith.com}
\href{http://facebook.com/johnsmith}{fb://jsmith}
\section{languages}
english mother tongue
spanish \& italian fluency
\section{programming}
{\color{red} $\varheartsuit$} JavaScript
Python, C++, PHP
CSS3 \& HTML5
\end{aside}
%----------------------------------------------------------------------------------------
% EDUCATION SECTION
%----------------------------------------------------------------------------------------
\section{education}
\begin{entrylist}
%------------------------------------------------
\entry
{2011--2012}
{Masters {\normalfont of Commerce}}
{The University of California, Berkeley}
{\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.}
%------------------------------------------------
\entry
{2007--2008}
{Bachelor {\normalfont of Business Studies}}
{The University of California, Berkeley}
{Specialization in Commerce}
%------------------------------------------------
\end{entrylist}
%----------------------------------------------------------------------------------------
% WORK EXPERIENCE SECTION
%----------------------------------------------------------------------------------------
\section{experience}
\subsection{Full Time}
\begin{entrylist}
%------------------------------------------------
\entry
{2012--Now}
{LEHMAN BROTHERS}
{Los Angeles, California}
{\emph{1\textsuperscript{st} Year Analyst} \\
Developed spreadsheets for risk analysis on exotic derivatives on a wide array of commodities (ags, oils, precious and base metals), managed blotter and secondary trades on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping. \\
Detailed achievements:
\begin{itemize}
\item Learned how to make amazing coffee
\item Finally determined the reason for \textsc{PC LOAD LETTER}:
\begin{itemize}
\item Paper jam
\item Software issues:
\begin{itemize}
\item Word not sending the correct data to printer
\item Windows trying to print in letter format
\end{itemize}
\item Coffee spilled inside printer
\end{itemize}
\item Broke the office record for number of kitten pictures in cubicle
\item Learned how to make more amazing coffee on a new machine 01
\item Learned how to make more amazing coffee on a new machine 02
\item Learned how to make more amazing coffee on a new machine 03
\item Learned how to make more amazing coffee on a new machine 04
\item Learned how to make more amazing coffee on a new machine 05
\item Learned how to make more amazing coffee on a new machine 06
\item Learned how to make more amazing coffee on a new machine 07
\item Learned how to make more amazing coffee on a new machine 08
\item Learned how to make more amazing coffee on a new machine 09
\item Learned how to make more amazing coffee on a new machine 10
\item Learned how to make more amazing coffee on a new machine 11
\item Learned how to make more amazing coffee on a new machine 12
\item Learned how to make more amazing coffee on a new machine 13
\item Learned how to make more amazing coffee on a new machine 14
\item Learned how to make more amazing coffee on a new machine 15
\item Learned how to make more amazing coffee on a new machine 16
\item Learned how to make more amazing coffee on a new machine 17
\item Learned how to make more amazing coffee on a new machine 18
\item Learned how to make more amazing coffee on a new machine 19
\item Learned how to make more amazing coffee on a new machine 20
\item Learned how to make more amazing coffee on a new machine 21
\end{itemize}}
%------------------------------------------------
\end{entrylist}
\end{document}