我在使用脚注时遇到了问题。我知道有多个软件包允许我创建尾注,但如果我想要一个既是脚注又是尾注的注释怎么办?
它会出现在参考页面上以及文档的末尾。
我浏览了 pagenote 和 endnote 的文档,但找不到类似的内容。
答案1
根据评论所建议,我创建了一个新命令。
这就是我最终得到的结果。
\newcommand{\fn}[1]{\stepcounter{footnote}\footnotetext{#1}\endnote{#1}}
\let\footnote=\fn
完美运行!
答案2
我在尝试复制您所做的事情时遇到了问题。我的文档开头有以下内容:
\usepackage{endnotes}
\usepackage{pagenote}
\renewcommand*{\notedivision}{\chapter*{\notesname}}
\newcommand{\fn}[1]{\stepcounter{footnote}\footnotetext{#1}\endnote{#1}}
\let\footnote=\fn
\makepagenote
我也希望将注释放在文档末尾,我写了
\printnotes
但注释只在页面末尾可见。你知道吗?
谢谢