我正在使用该sepfootnotes
包将我的笔记存储在单独的文件中,并将它们作为尾注检索。我有一个非常可靠的设置,除了一件事之外,一切都运行良好:当我单击脚注时,它会将我带回到第一页,而不是预期的行为,即转到其专用部分中的尾注。根据我的测试,这似乎只是在将笔记呈现为尾注时才会出现问题,而使用脚注时似乎不是一个因素。将笔记存储在文档中或单独的文件中时,我得到相同的结果。当使用脚注呈现笔记时,内容是在笔记上方还是下方都没有区别,正如在其他一些线程中提到的那样。我是否包含标签也没有区别\section
。以下是我在测试中使用的示例:
使用脚注:
\documentclass{article}
\usepackage{sepfootnotes}
\usepackage{hyperref}
\begin{document}
Some dummy text on a first page.
\newpage
Some text that requires elaboration using a note.\sepfootnote{x}
\sepfootnotecontent{x}{Blah.}
\end{document}
使用尾注:
\documentclass{article}
\usepackage{sepfootnotes}
\newendnotes{a}
\anotecontent{x}{Blah.}
\usepackage{hyperref}
\begin{document}
Some dummy text on a first page.
\newpage
Some text that requires elaboration using a note.\anote{x}
\section{Notes}
\theanotes
\end{document}
这可能是软件包中的错误吗sepfootnotes
?还是我在这里做错了什么?