脚注不显示!

脚注不显示!

有人能帮我吗?我正在写简历,需要一个正常的标准脚注。标题如下:

\documentclass[a4paper,10pt]{article}
\usepackage{eurosym}


\usepackage[bookmarks=false]{hyperref} %make sure it comes last of your loaded packages
%\usepackage[dvips,bookmarks=false]{hyperref} %make sure it comes last of your loaded packages
\hypersetup{pdfstartview=FitH,pdfhighlight=/O,colorlinks=true,urlcolor=red,linkcolor=red}

\oddsidemargin = 21 pt
\evensidemargin = 21pt
\textwidth = 410 pt

\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lastpage}
\lhead{Henrique GOMES\hspace{.5em}}
\chead{}
\rhead{Curriculum \hspace{.5em}   -- \hspace{.5em} Sep 2013}
\lfoot{}
\cfoot{}
\rfoot{{Page \thepage ~of \pageref{LastPage}}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}



\setlength\parindent{0in}

并且脚注处于表格环境中:

\begin{tabular}{ll}
aaaa\footnote{aaaa}
\end{tabular}

答案1

\footnote在浮动环境(例如{figure}或 )中使用脚注相当困难{table},因为 LaTeX 无法提前知道浮动的位置,因此无法找到脚注的正确页面。不过,有一些方法可以添加脚注。

用一个{minipage}

{minipage}它自己的脚注,然后脚注将与您的图表/表格一起流动。

小页脚注

\documentclass{article}

\begin{document}
document text
\begin{figure}
    \begin{minipage}{\textwidth}
        \begin{tabular}{ll}
            A & B\footnote{Text} \\
        \end{tabular}
    \end{minipage}
\end{figure}
document text
\end{document}

通过分离脚注编号和文本来帮助 LaTeX

您可以使用 设置脚注编号\footnotemark,然后使用 将文本置于浮动之外\footnotetext{<Text>}。在这种情况下,您必须注意浮动环境并\footnotetext显示在同一页面上。

\documentclass{article}

\begin{document}
document text
\begin{figure}
    \begin{tabular}{ll}
        A & B\footnotemark \\
    \end{tabular}
\end{figure}
\footnotetext{Text for the last footnote}
document text
\end{document}

但这只适用于一对标记和文本,即,你不能使用两个\footnotemark没有\footnotetext在第一个注释中之间他们。

相关内容