Curricula Vitae / Résumés ⇒ Adding footnote to cv
Adding footnote to cv
I am using the modern cv template with classic style.
I really like it, but I would like to add a footnote at the end of each page just saying something like "CV for company ....", maybe on the same line of the page number.
Does any of you know how to modify the .sty file in order to achieve that?
Thanks a lot!
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
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Adding footnote to cv
welcome to the forum!
I think there is no page number in that template. By the way, never change a .sty file, better modify the .tex file of a template that you fill in.
Anyway, you could look for the line
\extrainfo{additional information}
in the
cv.tex
file, and put your text in, such as \extrainfo{CV for company ...}
Stefan
Adding footnote to cv
thank you for the advice about the .sty file!
If I use the extrainfo line as you suggest, the additional information will appear near my picture, on the top page.
However, I do look for a footnote... any further help?
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Adding footnote to cv
Here is a suggestion - add to your document preamble, in the .tex file:
Code: Select all
\fancyfoot[l]{\parbox[b]{.8\textwidth}{\color{color2}\addressfont\itshape CV for company ...}}
Adding footnote to cv
Thanks a lot!