使用 apa6 类的参考文献、表格/图片和附录的顺序

使用 apa6 类的参考文献、表格/图片和附录的顺序

根据 APA 第 6 版,稿件的顺序应为:标题页、摘要、正文、参考文献、脚注、表格、图表、附录。我尝试使用 apa6 类和 apacite 参考样式排版稿件,但最后几部分的顺序似乎不符合这一顺序。在正文之后(暂时忽略脚注),它产生了表格/图表、附录、参考文献的顺序。这是一个工作示例:

\documentclass[man,apacite]{apa6}
\usepackage[american]{babel}

\title{This is the title}
\author{Joe Williams}
\affiliation{University A}
\leftheader{Left header}
\abstract{This is the abstract}
\keywords{APA style}

\begin{document}

\maketitle

Content of the article.
This is what we cite \cite{Smith2013}.
Table~\ref{tab:the_able} has some info.

\begin{table}
\caption{A complex table.}
\label{tab:the_able}
\begin{tabular}{l l}
cell 1 & cell 2 \\
\end{tabular}
\end{table}

\appendix

\section{The Appendix}
Stuff I want to put in the appendix.

\bibliography{ref}

\end{document}

而文件“ref.bib”具有以下内容。

@article{Smith2013,
    Author = {Smith, A.},
    Journal = {Psychological Review},
    Number = {1},
    Pages = {23-45},
    Title = {{This is the title}},
    Volume = {6},
    Year = {2013}}

我该如何解决这个问题?或者,有没有办法任意重新排序这些不同的部分?

答案1

如果我把它放在\bibliography{ref}前面\appendix,无论出于什么原因,它都会将顺序从 TF-AR(表格/图形、附录、参考资料)更改为 R-TF-A。

相关内容