Curricula Vitae / Résumés ⇒ Adding footnotes
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Adding footnotes
Dan
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
Adding footnotes
This is a bit of a hack but it works. Include this in the preamble:
\usepackage{footmisc}
then wherever you want a footnote use: \footnotemark[1]
. This will print a small superscript footnote number at the position. Finally, just outside the block that the footnote is used in, you need this to specify the text for the footnote: \footnotetext[1]{some text}
. For example:Code: Select all
\subsection{Vocational}
\footnotetext[1]{some text}
\cventry{2012--Present}{1\textsuperscript{st}
Year Analyst}{\textsc{Lehman Brothers}}{Los Angeles}{}{Developed spreadsheets\footnotemark[1]
for risk analysis on exotic derivatives on a wide array of commodities
(ags, oils, precious and base metals), managed blotter and secondary trades
on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping.}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Adding footnotes
Even if I take your example and copy & paste it into my cv...
Code: Select all
\cventry{TEXT}{TEXT}{TEXT\footnotemark[1]}{LOCATION}{}{TEXT}
\cvline
then it works fineCode: Select all
\cvline{}{TEXT\footnotemark[1]}
Dan
Adding footnotes
I just noticed there was a missing closing bracket at the end of my example above. When I added
\usepackage{footmisc}
to the preamble and pasted in:Code: Select all
\footnotetext[1]{some text}
\cventry{2012--Present}{1\textsuperscript{st}
Year Analyst}{\textsc{Lehman Brothers}}{Los Angeles}{}{Developed spreadsheets\footnotemark[1]
for risk analysis on exotic derivatives on a wide array of commodities
(ags, oils, precious and base metals), managed blotter and secondary trades
on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping.}
Cheers,
Vel