如何在不使用特殊软件包的情况下将小页面中的脚注更改为表格中的符号?

如何在不使用特殊软件包的情况下将小页面中的脚注更改为表格中的符号?

基于如何更改小页面中脚注的符号使用符号代替数字作为脚注标记我期望此代码能够工作:

\documentclass{article}

  \begin{document}
      \begin{minipage}{1\textwidth}

        \renewcommand*{\thempfootnote}{\fnsymbol{footnote}}
       \begin{tabular}{ll}
       \hline
        foo & bar\footnote[1]{buzz} \\
        foobar & barfoo \\
        \hline
       \end{tabular}

      \end{minipage}
  \end{document}

但是,我根本没有看到任何脚注符号。

在此处输入图片描述

感觉我犯了一些愚蠢的错误,但我不明白。我错过了什么?

答案1

% arara: pdflatex

您必须重新定义小页面脚注,而不是脚注:

\documentclass{article}        

  \begin{document}
      \begin{minipage}{\textwidth}
      \renewcommand*{\thempfootnote}{\fnsymbol{mpfootnote}}
       \begin{tabular}{ll}
       \hline
        foo & bar\footnote[1]{buzz} \\
        foobar & barfoo \\
        \hline
       \end{tabular}
      \end{minipage}
  \end{document}

在此处输入图片描述

相关内容