apa6 手稿模式第一幅图尽管尺寸很小但占据了整整一页

apa6 手稿模式第一幅图尽管尺寸很小但占据了整整一页

我使用apa6带有man( \documentclass[man]{apa6}) 的文档类。该man模式将所有图形放在末尾,但第一个图形单独显示在页面上,第二个图形在下一页居中显示。由于是man模式,常规定位 ( !ht) 似乎都不起作用。这只是一个错误,apa6还是有办法修复它?

我尝试了 CTAN 包附带的长示例中的多个图像apa6,但出现了同样的问题,因此似乎这不是我遇到的特定情况。

这是软件包中附带的示例代码的简化版本,其中附有更多图片。这也会产生如下所示的相同问题。

\documentclass[man]{apa6}

\usepackage{lipsum}

\usepackage[american]{babel}

\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{bibliography.bib}

\title{Sample APA-Style Document Using the \textsf{apa6} Package}
\shorttitle{Sample Document}

\author{Brian D. Beitzel}
\affiliation{SUNY Oneonta}

\leftheader{Beitzel}

\abstract{\lipsum[1]}

\keywords{APA style, demonstration}

\authornote{Brian D. Beitzel, Department of Educational Psychology,
  Counseling and Special Education, SUNY Oneonta.

  Correspondence concerning this article should be addressed to Brian
  D. Beitzel, Department of Educational Psychology, Counseling and
  Special Education, SUNY Oneonta, 366 Fitzelle Hall, Oneonta, NY
  13820.  E-mail: [email protected]}

\begin{document}
\maketitle
\lipsum[2]

\Textcite{vonDavier2011} said this,
too \parencite{vonDavier2011,Lassen2006}.  Further evidence comes from
other sources \parencite{Shotton1989,Lassen2006}.  \lipsum[3]

\begin{figure}
    \includegraphics[bb=0in 0in 2.5in 2.5in, height=2.5in, width=2.5in]{Figure1.pdf}
    \caption{This is my first figure caption.}
    \label{fig:Figure1}
\end{figure}

\begin{figure}
    \includegraphics[bb=0in 0in 2.5in 2.5in, height=2.5in, width=2.5in]{Figure1.pdf}
    \caption{This is my first figure caption.}
    \label{fig:Figure1}
\end{figure}

\begin{figure}
    \includegraphics[bb=0in 0in 2.5in 2.5in, height=2.5in, width=2.5in]{Figure1.pdf}
    \caption{This is my first figure caption.}
    \label{fig:Figure1}
\end{figure}
\begin{figure}
    \includegraphics[bb=0in 0in 2.5in 2.5in, height=2.5in, width=2.5in]{Figure1.pdf}
    \caption{This is my first figure caption.}
    \label{fig:Figure1}
\end{figure}

Figure~\ref{fig:Figure1} shows this trend. \lipsum[16]

\end{document}

在此处输入图片描述

答案1

我是 apa7 软件包的开发人员,今天我发布了 CTAN 更新 (1.05) 来纠正该软件包的这个问题。我应该很快就会发布:https://ctan.org/pkg/apa7

答案2

根据 APA,每个图都应从单独的页面开始。我相信它是否居中并不重要。不过,我认为这不是预期的行为,我可以用您提供的示例重现该问题。事实上,图 2 和图 3 甚至显示在同一页面上,这与 APA 不一致。您可能需要联系软件包的作者来报告此问题。

说实话,我认为你不必为你的投稿担心这一点。事实上,我并不认为你的具体案例违反了 APA 格式,除非你的图表不在单独的页面上。

顺便说一句,很多期刊其实都同意把图表放在正文里。这样审稿人更容易阅读。把浮动放在最后只是为了方便排版(例如https://academia.stackexchange.com/questions/11448/why-do-some-journals-want-figures-at-the-end)。但这通常只对修改后的最终提交有影响。不过,有些编辑可能会认真对待这个问题。即使在这种情况下,你也会收到一条礼貌的消息,要求你遵守 APA 格式并重新提交。

相关内容