提供书中引用的图表

提供书中引用的图表
\documentclass[a4paper,12pt,numbers=noenddot]{scrartcl}
\usepackage{amsmath}
\usepackage{amsmath}
\begin{document}


\begin{figure}[H]
\centering
\includegraphics[scale=0.5]{1.png}
\caption{Motion of Body \textit{H}}
\label{fig:two}
\end{figure}
\end{document}

我如何为上图引用一本书的参考文献?

答案1

如果你想在你的图表标题中引用参考文献,只需修改\caption如下行即可

\caption{Motion of Body \textit{H}, from \cite{thebook}}

您在参考书目部分为其分配的标签在哪里thebook?例如:

\begin{thebibliography}
    \bibitem{thebook} Authors, Title, Editorial, Place, Year.
\end{thebibliography}

相关内容