Curricula Vitae / Résumés ⇒ Separating Experience Section over pages
Separating Experience Section over pages
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Separating Experience Section over pages
it is not possible without changing how the template works, i.e. a 100 percent change.
Of course, you an just split the
entrylist
environment in two parts.Separating Experience Section over pages
You can useuuppal wrote:I have two subsections in my experience section. Within these two subsections, I have multiple entries. Unfortunately, the second subsection is too long to fit on the first page, and instead of splitting into two parts, the entire subsection gets moved to the second page leaving awkward whitespace on the first page. I was wondering what I need to change to fix that. Sorry if this is a simple fix, I am new to LaTeX.
Thanks
longtabu
environment to do this:Code: Select all
\RequirePackage{longtable}
\RequirePackage{tabu}
\setlength{\tabcolsep}{0pt}
\newenvironment{entrylist}{%
\begin{longtabu} to \textwidth {@{\extracolsep{\fill}}ll}
}{%
\end{longtabu}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\newcommand{\entry}[4]{%
#1&\parbox[t]{11.8cm}{%
\textbf{#2}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #3}\\%
#4\vspace{\parsep}%
}\\}