我正在写一篇 IEEE 风格的论文,在这篇论文中,我想向我的读者引用另一篇论文中的一张图,那篇论文也被我的论文引用,所以它在我的参考书目列表中。
根据 IEEE 样式指南,我应该使用“读者可参阅 [2,图 4]”这样的样式,而不是“[2] 中的图 4”。后一种样式很容易编写,就Fig.4 in \cite{mycitation}
行,但是,我不知道如何实现前一种样式。
答案1
尝试这个:
\documentclass{memoir}
\begin{document}
Use the optional argument: \cite[Fig.~4]{fooBook}.
\begin{thebibliography}{9}
\bibitem{fooBook}
Yuko Watanabe,
\textit{My experience with placeholder books in \LaTeX examples},
Dummy publishing Company, Saitama,
zeroth edition,
1984.
\end{thebibliography}
\end{document}
该命令\cite[Fig.~4]{lamport94}
也适用于 BibTeX。它还应该适用于其他类。