GeneralIn-text Figures in APA Manual

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
awetawef
Posts: 4
Joined: Wed Dec 03, 2008 5:33 pm

In-text Figures in APA Manual

Post by awetawef »

Hello,

I need in-text figures in apa. However, this document class does not allow this to happen (they are pushed to the end of the paper). How can I edit the class file to change this?

Also, how can I disable the figure list that is automatically put in in APA style?

Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

In-text Figures in APA Manual

Post by localghost »

awetawef wrote:[…] I need intext figures in \documentclass[man]{apa}. However, this document class does not allow this to happen (they are pushed to the end of the paper). How can I edit the apa.cls file to change this? […]
There is no need to edit the original class. The right parameters for placement will do the trick.

Code: Select all

\begin{figure}[!ht]
% Contents of figure
\end{figure}
awetawef wrote:[…] Also, how can I disable the figure list that is automatically put in in apa style? […]
I don't know the apa class, but I found no information that this is done automatically. Check your source code for a \listoffigures command. Perhaps the outline of the class has more information for you.


Best regards and welcome to the board
Thorsten¹
awetawef
Posts: 4
Joined: Wed Dec 03, 2008 5:33 pm

In-text Figures in APA Manual

Post by awetawef »

Thank you for your response; however, using the parameters [!ht] does not fix the problem. I believe it is hard-coded into the document class. The figures still appear at the end of the paper.

I suppose that I would OK with them appearing at the end of the paper if the had captions, but the captions are not displayed at the end of the paper. I get something like this (just showing what the output is, not actual tex):
Figure Captions:
1. blah
2. blah

\newpage

figure 1 here (no caption)

\newpage

figure 2 here (no caption)
Any idea how I can get the captions to show up?

Just to clear things up, here is the code I am using to display a figure:

Code: Select all

\begin{figure}[!ht]
  \centering
  \subfigure[Direction Field for $K=0$, $C=-1$]{
    \includegraphics[scale=.5]{pics/data-0-1.jpeg}
    \label{fig:curv0-1-1}
  }
  \subfigure[Surface for $K=0$, $C=-1$]{
    \includegraphics[scale=.5]{pics/data-0-2.jpg}
    \label{fig:curv0-1-2}
  } 
  \caption[Solution for $K=0$, $C=-\frac{1}{5}$]{Solution for $K=0$, $C=-1$}
  \label{fig:curv0-1}
\end{figure}
rcassidy
Posts: 1
Joined: Thu Nov 28, 2013 1:25 am

In-text Figures in APA Manual

Post by rcassidy »

APA format dictates that the floats go after the reference list and before any appendices. To override this feature, try adding floatsintext as an optional argument in the document class.

Code: Select all

\documentclass[man,floatsintext]{apa6}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

In-text Figures in APA Manual

Post by localghost »

rcassidy wrote:APA format dictates that the floats go after the reference list and before any appendices. To override this feature, try adding floatsintext as an optional argument in the document class. […]
At the time the question has been asked here — which is almost five(!) years ago — the apa6 class didn't exist. And the old apa class doesn't offer this option.
Post Reply