我正在尝试参考如下所示的图号...有人能帮我吗?
Figure … as illustrated in [5, Fig. 1]
Table … is presented in [5, Tab. 3]
Equation … as seen in [5, eq. (2)]
欲了解更多信息,请查看此链接https://libraryguides.vu.edu.au/ieeereferencing/figurestablesequations
答案1
也许我误解了你想要什么,但看起来你想要的很简单:
\documentclass[12pt,a4paper]{article}
\begin{document}
See \cite[Figure~1]{Einstein:1905ve},
see \cite[page~11]{Einstein:1905cc},
see \cite[Equation~(2)]{Einstein:1912bi}.
\begin{thebibliography}{9}
\bibitem{Einstein:1905ve}
A.~Einstein,
\textit{On the electrodynamics of moving bodies},
Annalen Phys.\ \textbf{17}, 891-921 (1905)
\bibitem{Einstein:1905cc}
A.~Einstein,
\textit{Concerning an heuristic point of view toward the emission and
transformation of light},
Annalen Phys.\ \textbf{17}, 132-148 (1905)
\bibitem{Einstein:1912bi}
A.~Einstein,
\textit{The Speed of Light and the Statics of the Gravitational Field},
Annalen Phys.\ \textbf{38}, 355-369 (1912)
\end{thebibliography}
\end{document}