匕首脚注

匕首脚注

我想在其中一个实际上是脚注的章节标题中添加一个匕首符号,这样我就可以在页脚中写评论。有人知道如何将脚注编号更改为匕首符号,然后将其固定到章节中吗?有人知道如何做到这一点吗?

答案1

请提供最小工作示例(MWE)下次你问问题时……

我希望这就是你要找的。在这里我定义了一个新命令\daggerfootnote用于这种情况。如你所见,它不会干扰其他脚注编号。

梅威瑟:

\documentclass{article}

\newcounter{daggerfootnote}
\newcommand*{\daggerfootnote}[1]{%
    \setcounter{daggerfootnote}{\value{footnote}}%
    \renewcommand*{\thefootnote}{\fnsymbol{footnote}}%
    \footnote[2]{#1}%
    \setcounter{footnote}{\value{daggerfootnote}}%
    \renewcommand*{\thefootnote}{\arabic{footnote}}%
    }

\begin{document}
\vspace*{\fill} % just to show the footnotes, don't use it in your document

\section{First section}
bla\footnote{normal footnote.} bla\footnote{normal footnote.}

\section[Section with footnote]{Section with footnote\protect\daggerfootnote{dagger footnote.}}
bla\footnote{normal footnote.} bla\footnote{normal footnote.}

\end{document} 

输出:

在此处输入图片描述

相关内容