
我正在寫一篇論文,使用apa6
包裹。我被要求將所有腳註放在參考清單之後的單獨頁面上。這確實是 APA 出版手冊(第六版)中的樣本手稿所遵循的風格。然而,在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}