
私は論文を書いていますapa6
パッケージ。脚注をすべて参考文献リストの後の別のページに配置するように求められました。これは確かに APA の Publication Manual (第 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}