脚注 friggeri-cv latex 模板

脚注 friggeri-cv latex 模板

我正在尝试自定义 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,并且\footnotea 中的所有 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}

相关内容