在 apa6 中将脚注放在稿件末尾

在 apa6 中将脚注放在稿件末尾

我正在用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}

相关内容