我正在尝试自定义 Friggeri-CV 模板。我想在“现在”上方添加脚注。我尝试了以下代码:
\section{education}
\begin{entrylist}
%------------------------------------------------
\entry
{2013--Now \footnote{An example footnote.}}
{PhD {\normalfont in Computer Science}}
{University, United Kingdom}
\end{entrylist}
英尺数出现在“Now”的顶部,但是页面底部没有英尺。我该如何修改代码才能在页面底部获取描述?
答案1
环境entrylist
实际上设置了一个tabular
,并且\footnote
a 中的所有 stabular
都被吞噬了。您必须设置一个手册\footnotemark
和一个单独的\footnotetext
外部环境entrylist
:
\documentclass{friggeri-cv}% https://github.com/afriggeri/cv
\begin{document}
\header{name}{surname}
{occupation}
\section{education}
\begin{entrylist}
%------------------------------------------------
\entry
{2013--Now \footnotemark}
{PhD {\normalfont in Computer Science}}
{University, United Kingdom}{}
\end{entrylist}
\footnotetext{An example footnote.}
\end{document}