脚注乱了

脚注乱了

我目前正在写我的学士论文,我遇到了文本脚注的问题。出于某种原因,一些脚注被列出两次。但第二次出现时它们不包含任何文本(请参阅1)。有人知道如何去掉那些“混乱的”脚注吗?

信息:使用\footnotemark{}and\footnotetext{}代替\tablefootnote{}不能解决问题

如果您需要更多信息请告诉我

梅威瑟:

\documentclass{scrreprt}
\usepackage{tablefootnote}
\begin{document}

\begin{figure}[!htb]
        \caption{Caption with Tablefootnote\tablefootnote{Tablefootnote in Caption of a Figure}}
\end{figure}

\begin{table}[!htb]
        \centering
        \begin{tabular}{c}
            Tablefootnote in a Table\tablefootnote{Tablefootnote in a Table}
        \end{tabular}
    \end{table}

\end{document}

这是我的 MWE 编译的方式

平均能量损失

答案1

空白条目来自标题中的空脚注,因为标题设置了两次:

\footnotemark{}与可选参数结合使用可以\caption[]{}解决问题

\documentclass{scrreprt}
\usepackage{tablefootnote}
\begin{document}

\begin{figure}[!htb]
    \caption[Caption with Footnote]
    {Caption with Footnote\footnotemark{}}
\end{figure}

\footnotetext{Footnote in Caption of a Figure}

\begin{table}[!htb]
    \begin{tabular}{c}
        Footnote in a Table\tablefootnote{Footnote in a Table}
    \end{tabular}
\end{table}

\end{document}

相关内容