LaTeX Creating a List of Figures in LaTeX: Solving the Referencing Problem

  • Thread starter Thread starter marraneth
  • Start date Start date
  • Tags Tags
    Latex List
AI Thread Summary
Creating a list of figures in LaTeX can be complicated when citations are included in figure captions, as it disrupts the numbering order. To resolve this, one approach is to manually input citation numbers in the captions or to write citations directly in the text surrounding the figures. Using the \caption command, a short version without citations can be provided for the list of figures, while the full caption with citations appears in the document body. The nottocite package can also help manage citation order, but it is not necessary if captions are formatted correctly. Properly structuring captions allows for accurate citation referencing in LaTeX documents.
marraneth
Messages
3
Reaction score
0
I'm creating a large document in LaTeX, with several figures. Some of these figures have citations within the captions, which is causing problems since I am creating a list of figures, with captions, at the start of the document. A figure that appears midway through has a reference that should be number 30 based on its appearance in the main text, but because the list of figures is compiled first, it is labelled number 1. How do I get around this?
 
Physics news on Phys.org
try putting teh citation in the text either prior to or just after the figure...
 
If you only have several figures, manually input the citation numbers into the captions.

eg. don't use \cite but type out ''[3]''
 
Try writing out the citation in the caption and not as a reference...
 
Thanks for the help, I had hoped there was some way to do it automatically, rather than just typing it out. I'm sure LaTeX must be capable of doing it somehow, I had thought maybe something using \protect. Oh well, I'll just have to admit defeat I guess.
 
Latex should not have a problem with citation in a caption (footnotes is a whole other matter). Can you recreate the problem in a minimal example and post it?
For eksample the following seems to work

Code:
\documentclass[article]{memoir}
\begin{document}
\listoffigures*\newpage
\begin{figure}\caption{ddfg 1\cite{citation-here}}\end{figure}
\begin{figure}\caption{ddfg 2}\end{figure}
\begin{figure}\caption{ddfg 3}\end{figure}
\begin{figure}\caption{ddfg 4}\end{figure}
\begin{figure}\caption{ddfg 5\cite{citation-here}}\end{figure}
\begin{figure}\caption{ddfg 6}\end{figure}
\bibliography{bib-file-here}
\bibliographystyle{plain} 
\end{document}

otherwise news:comp.text.tex might be able to help (but they will most likely ask for a minimal example as well).
 
There would be no problem ordinarily, but the references appear in the text also, and not in the same order as the figures appear. So perhaps an example would be something like:

Code:
\documentclass[article]{memoir}
\begin{document}
\listoffigures*\newpage
Blah blah blah \cite{citation-two}.
\begin{figure}\caption{ddfg 1\cite{citation-one}}\end{figure}
\begin{figure}\caption{ddfg 2}\end{figure}
\begin{figure}\caption{ddfg 3}\end{figure}
\begin{figure}\caption{ddfg 4}\end{figure}
\begin{figure}\caption{ddfg 5\cite{citation-two}}\end{figure}
\begin{figure}\caption{ddfg 6}\end{figure}
Blah blah blah \cite{citation-one}.
\bibliography{bib-file-here}
\bibliographystyle{plain} 
\end{document}

I want the order of the references to be as they are in the text.
 
\bibliographystyle{unsrt}
and
\usepackage{notoccite} should do the trick. Se the documentation in notoccite.sty for how it works,
http://www.tug.org/tex-archive/macros/latex/contrib/misc/notoccite.sty
 
Last edited by a moderator:
Follow up on nottocite.sty

As pointed out in nottocite.sty, all you really need to do is provide a short version of the caption (to be used in the list of figures) that does not include the citation:

\caption[short version in square brackets without citation, to appear in list of figures]{long version in curly braces with \cite{entrylabelx}, to appear in body with actual figure}

Therefore, the number assigned to \cite{entrylabelx} corresponds to the citation counter value when the long version of the caption is processed in the body of the document. There is no need to use nottocite.sty if you are ok with providing captions this way.
 

Similar threads

Replies
2
Views
2K
Replies
5
Views
5K
Replies
5
Views
4K
Replies
8
Views
12K
Replies
5
Views
4K
Replies
4
Views
5K
Replies
2
Views
4K
Back
Top