[Tex/LaTex] Wrong cited reference numbering in a figure caption

captionscitingincludegraphics

I am preparing my thesis and there is a university latex template. In the thesis, I am using numbered citing for references with /cite. My problem is to start counting the references in the caption first. I don't know how to replace with appropriate number citation.

For example:

Bla bla bla bla [2] bla bla bla bla bla [3] bla bla

The figure comes

Figure 1.1 : Figure caption comes [1]

Note: I tried \protect\cite{} but it doesn't work. I am using packages of cite, enumerate, float, caption, graphics, and so on.

Best Answer

I suggest you change

\caption{Caption \cite{Albertson2005}} 

to

\caption[Caption]{Caption \cite{Albertson2005}} 

and re-run LaTeX twice to fully update all citation call-outs.

Related Question