図2.4[1]のような図に引用を追加する方法

図2.4[1]のような図に引用を追加する方法

図:.2.4[1]のような図に引用を追加する方法\cite{b1}キャプションに追加しているので、インデックスが印刷されます。では、図に追加されるように引用を追加する場所はどこですか。

答え1

キャプションに引用を入れることができます。例:

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

この例の結果は次のようになります。

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

またはビブの設定に応じて

Figure 2.1: the title of the figure [1]

関連情報