APA 6 类表格标记

APA 6 类表格标记

我正在使用该类编写文档apa6。正如在手稿模式下所预期的那样,表格和图形被放置在文档的末尾。但是,与正常endfloat行为不同,正文中没有放置任何标记。

我从课堂上看到apa6,它使用endfloat选项进行调用nomarker。因此有两个问题:

  1. apa6这是没有表格引用的标准吗?
  2. 我怎样才能知道apa6放置这些参考资料?

谢谢

这是一个最小的工作示例

\documentclass[man]{apa6} % man for manuscript format, jou for journal format, doc for standard LaTeX document format
\usepackage[natbibapa]{apacite} % Divine intervention help you if you need to use a different citation package.
\usepackage[american]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}


\usepackage{url}   % this allows us to cite URLs in the text
\usepackage{graphicx}   % allows for graphic to float when doing jou or doc style
\usepackage{verbatim}   % allows us to use \begin{comment} environment
\usepackage{caption}
%\usepackage{lscape}
\usepackage{pdflscape}

\title{Tables and apa6}
\author{Author Name}


\begin{document}

\maketitle

\section{Results}

\section{General Discussion}

There should be a marker here . 
\begin{table}
\begin{tabular}{|l|l|l|}
  \hline
  % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
 & 5 &  \\
   & 5 &  \\
   & 5 &  \\
  \hline
\end{tabular}
\end{table}
\bibliographystyle{apacite}
\bibliography{references}

\end{document}

答案1

我有完全相同的问题,发现使用floatsintextdocumentclass 中的 class 选项可以解决问题。

不要\documentclass[man]{apa6}写成\documentclass[man, floatsintext]{apa6}

它看起来应该是这样的:

\documentclass[man, floatsintext]{apa6} % man for manuscript format, jou for journal format, doc for standard LaTeX document format
\usepackage[natbibapa]{apacite} % Divine intervention help you if you need to use a different citation package.
\usepackage[american]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}


\usepackage{url}   % this allows us to cite URLs in the text
\usepackage{graphicx}   % allows for graphic to float when doing jou or doc style
\usepackage{verbatim}   % allows us to use \begin{comment} environment
\usepackage{caption}
%\usepackage{lscape}
\usepackage{pdflscape}

\title{Tables and apa6}
\author{Author Name}


\begin{document}

\maketitle

\section{Results}

\section{General Discussion}

There should be a marker here . 
\begin{table}
\begin{tabular}{|l|l|l|}
  \hline
  % after \\: \hline or \cline{col1-col2} \cline{col3-col4} ...
 & 5 &  \\
   & 5 &  \\
   & 5 &  \\
  \hline
\end{tabular}
\end{table}
\bibliographystyle{apacite}
\bibliography{references}

\end{document}

答案2

APA 不要求使用“图 x 在此处”之类的标记。所以这是预期的行为。对于第 5 版的指南,特别提到了这一点:“无需说‘在此处插入表格或图’。”(Cash,2009 年,第 2 页)

并且我认为这对于 APA 第 6 版来说没有改变(至少我在书中找到与之相关的任何内容)并且对于 APA 第 7 版可能仍然有效。

如果您仍然想要它,只需创建您自己的 apa6.cls 文件(删除该nomarkers选项)并将其放在您的工作目录中。

Cash, TF (2009)。《APA 风格研究手稿出版准备中的注意事项》。《Body Image》,6(1),1–6。https://doi.org/10.1016/j.bodyim.2008.10.003

相关内容