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}

관련 정보