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
Curricula Vitae / Résumés ⇒ Separating Experience Section over pages
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Separating Experience Section over pages
Welcome,
it is not possible without changing how the template works, i.e. a 100 percent change.
Of course, you an just split the
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.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
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}%
}\\}
Last edited by Stefan Kottwitz on Wed Jan 20, 2016 7:49 pm, edited 1 time in total.