posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
22.58k stars 4.74k forks source link

Footnotes #140

Open ozgurakgun opened 7 years ago

ozgurakgun commented 7 years ago

How does one do footnotes?

I tried the usual \footnote{foo bar} style, but no footnote gets generated.

Thanks!

justinbass commented 6 years ago

Not sure what you're trying to do. This works for me (inside document block):

\makecvfooter {\today} {Name} {\thepage}

Zinggi commented 6 years ago

I had the same problem as @ozgurakgun.
Footnotes seem to not work inside a \cventry ....

To work around the issue, I used a \footnotemark inside the \cventry and then outside the \cventry a \footnotetext{text}.

This works, but if you need multiple footnotes inside a \cventry, it gets a bit more tricky. In that case I used this trick:

\addtocounter{footnote}{-$number of footnotemarks$}
\stepcounter{footnote}\footnotetext{text1}
\stepcounter{footnote}\footnotetext{text2}

Hopes this helps others who are in the same situation.