tags:

views:

126

answers:

2

Hello, some journals require each figure to be submitted in a separate document. However, they do want the figure legends to be listed in the main document.

I was thus hoping to do something along these lines:

\section{Figure Legends}
\begin{description} 
 \item[Figure \ref{fig:fireAntBiology}] \label{fig:fireAntBiology} bla bla ants
\end{description}

This would still permit to \ref the figure from the main text. However, it doesn't work (The \ref returns the number of section "Figure Legends"). The following correctly gives a different number to each "figure":

\item[Figure \ref{fig:fireAntBiology}] \begin{figure} \caption{\label{fig:fireAntBiology}} \end{figure} bla bla ants

However, it also places empty figure floats throughout the document.

A solution should be straightforward. What am I missing? Any ideas?

Thanks! yannick

A: 

hmmmm one thing that sort of works is:

\section{Figure Legends}
\begin{figure}[!h]
  \caption{\label{fig:fireAntBiology} bla bla ants}
\end{figure}

But then I need to struggle with Latex's random float placement...

Yannick Wurm
Have you tried the float package? Then you can use \begin{figure}[H] which is "stronger" than [h]. Check the table of placements here: http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions
Vivi
thanks for the tip!
Yannick Wurm
+1  A: 

I would just use the endfloat package and split the resulting pdf in two separate documents for submission. Endfloat takes care of all the references and puts all the floats at the end of your document.

Habi
Yannick Wurm
I've never heard of this case, but if you read section 4 of the endfloat manual, you should be able to redefine the [Figure X here]-marker to contain the caption of the figure. I've not tried that though...
Habi
Yannick Wurm