Curricula Vitae / Résumés ⇒ Separating Experience Section over pages
Separating Experience Section over pages
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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}%}\\}