how to add citation to figure like Figure:.2.4[1]
Because I am adding \cite{b1} in caption it will print index.So where to add citation so it will add on figure.
Asked
Active
Viewed 110 times
1 Answers
2
You can put citations in the caption. For example:
\begin{figure}[H]
\begin{mdframed}[userdefinedwidth=.9\textwidth,align=center,]
\myfloatalign
\includegraphics[width=\textwidth]{./gfx/myfigure.jpg}
\end{mdframed}
\caption[the title of the figure.]{The title of the figure \citep{author:2015}}
\end{figure}
The result from this example is:
Figure 2.1: the title of the figure (author, 2015)
or depending on your bib settings
Figure 2.1: the title of the figure [1]
rvaneijk
- 330
-
offcourse you may have to run (pdf)latex multiple times to make sure the references/citations get rendered. See e.g., this answer. – rvaneijk Apr 18 '15 at 20:36
\documentclass{...}and ending with\end{document}. – Apr 18 '15 at 07:51