Wie fügt man einer Abbildung ein Zitat hinzu, wie in Abbildung:.2.4

Wie fügt man einer Abbildung ein Zitat hinzu, wie in Abbildung:.2.4

So fügen Sie einer Abbildung wie in Abbildung: 2.4 [1] ein Zitat hinzu. Da ich \cite{b1}eine Bildunterschrift hinzufüge, wird der Index gedruckt. Wo also fügt man das Zitat hinzu, damit es der Abbildung hinzugefügt wird?

Antwort1

Sie können Zitate in die Bildunterschrift einfügen. Zum Beispiel:

\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}

Das Ergebnis aus diesem Beispiel ist:

Figure 2.1: the title of the figure (author, 2015)

oder abhängig von Ihren Bib-Einstellungen

Figure 2.1: the title of the figure [1]

verwandte Informationen