我正在用apa6
包。我被要求将所有脚注放在参考文献列表后的单独页面上。这确实是 APA 出版手册(第 6 版)中的示例手稿所遵循的样式。apa6
然而,在课程中,脚注默认放在页面底部,而不是手稿末尾。有没有办法将所有脚注移到参考文献列表后的单独页面上?apa
不再维护的课程显然将所有脚注放在了单独的页面上,我想知道我是否可以对 做类似的事情apa6
。
\documentclass[man, a4paper, 12pt]{apa6}
\title{Title}
\author{Author}
\begin{document}
\maketitle
Main body.\footnote{footnote}
\end{document}
答案1
只需使用endnotes
包:
\documentclass[man, a4paper, 12pt]{apa6}
\usepackage{endnotes}
\usepackage{kantlipsum} % for mock text
\let\footnote\endnote
\title{Title}
\author{Author}
\begin{document}
\maketitle
Main body.\footnote{footnote}
X\footnote{Abc} \kant[1]
X\footnote{Abc} \kant[2]
X\footnote{Abc} \kant[3]
\clearpage
\theendnotes
\end{document}
答案2
如果脚注仍然类似于传统脚注,但只是在文档末尾的单独页面上,则可以捕获每个脚注\footnote
并将其替换为组合\footnotemark
和延迟 \footnotetext
。
\documentclass[man]{apa6}
\usepackage[nopar]{lipsum}% Just for this example
\let\oldfootnote\footnote
\renewcommand{\footnote}[1]{%
\footnotemark% Leave a footnote mark and ...
\AtEndDocument{\footnotetext{#1}}% Store \footnotetext for end-of-document
}
\let\oldfootnotetext\footnotetext
\renewcommand{\footnotetext}{\stepcounter{footnote}\oldfootnotetext}
\AtEndDocument{%
\clearpage% Clear the page
\setcounter{footnote}{0}% Reset the footnote counter
}
\title{Title}
\author{Author}
\begin{document}
\maketitle
\lipsum[1]\footnote{First footnote.}
\lipsum[2]\footnote{Second footnote.}
\lipsum[3]\footnote{Third footnote.}
\lipsum[4]\footnote{Fourth footnote.}
\lipsum[5]\footnote{Fifth footnote.}
\lipsum[6]\footnote{Sixth footnote.}
\lipsum[7]\footnote{Seventh footnote.}
\lipsum[8]\footnote{Eighth footnote.}
\lipsum[9]\footnote{Ninth footnote.}
\lipsum[10]\footnote{Tenth footnote.}
\end{document}