Curricula Vitae / Résumés ⇒ Wenneker CV - left column
-
- Posts: 2
- Joined: Mon Jul 12, 2021 10:18 am
Wenneker CV - left column
I am using the Wenneker resume CV (the modified version) and I would like to know how I can have a change the content of the left column on the second page.
I would like to add my photo on the left column of the first page of the CV but I would like that the photo does not appear on the left column of the second page. More generally, how can we do to have a different text on the left column on each page with this template ?
Thanks in advance
Christine
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
Wenneker CV - left column
Try
Code: Select all
% flowfram in structure.tex loads the etoolbox package.
\ifnumequal{\value{page}}{1}
{\includegraphics[width=0.6\columnwidth]{photo.jpg}\\[\baselineskip]}{}
Code: Select all
\ifnum\value{page}=1
\includegraphics[width=0.6\columnwidth]{photo.jpg}\\[\baselineskip]
\fi
-
- Posts: 2
- Joined: Mon Jul 12, 2021 10:18 am