如何将脚注附加到由尾注包生成的尾注头部“注释”中?

如何将脚注附加到由尾注包生成的尾注头部“注释”中?

当我使用“endnotes”包在文档末尾添加尾注时,它会将“注释”作为尾注部分的标题。现在我需要为该单词附加脚注,我该如何实现?

答案1

我觉得很奇怪,但这就是它;为了避免混淆,我将脚注标记改为符号。

\documentclass[a4paper]{article}

\usepackage{endnotes}
\let\originalfootnote\footnote
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\let\footnote\endnote

\renewcommand{\notesname}{Notes\originalfootnote{This is a footnote}}

\begin{document}

\section{First}
Something with a note\footnote{This is for section 1}

\section{Second}
Something with a note\footnote{This is for section 2}

\section{Third}
Something with a note\footnote{This is for section 3}

\theendnotes

\end{document}

在此处输入图片描述

如果您同时有脚注和尾注,那么更改非常简单:

\documentclass[a4paper]{article}

\usepackage{endnotes}

\renewcommand{\notesname}{Notes\footnote{This is a footnote}}

\begin{document}

\section{First}
Something with a note\endnote{This is for section 1}

\section{Second}
Something with a note\endnote{This is for section 2}

\section{Third}
Something with a note\endnote{This is for section 3}

\theendnotes

\end{document}

在此处输入图片描述

答案2

这太奇怪了,真的很有趣。我有一个解决方案:

\documentclass{article}
\usepackage{enotez, blindtext}


\begin{document}
\AtEveryEndnotesList{bla\footnote{Fussnote}}
Text with \endnote{\blindtext}

\printendnotes

\end{document}

它实际上并不是标题的脚注,但可能足够好了。

相关内容