在学术写作中,有时需要提请读者注意另一篇论文中的参考文献,以及引用论文本身。为此,我会写 [作者,年,和参考文献]。
但是,例如:
\documentclass{article}
\begin{document}
This guy reviewed it all before (\cite{lamport94} and refs. within)
\begin{thebibliography}{9}
\bibitem{lamport94}
Bob Smith,
The review of everything.
\end{thebibliography}
\end{document}
给出:
这家伙之前就说过了([1] 以及其中的参考文献)
但我希望“and refs. within”出现在与参考文献相同的(单个)括号中。
我怎样才能在 Latex 中做到这一点?
答案1
您只需
\cite[and refs. within]{lamport94}
完整代码
\documentclass{article}
\begin{document}
This guy reviewed it all before \cite[and refs. within]{lamport94}
\begin{thebibliography}{9}
\bibitem{lamport94}
Bob Smith,
The review of everything.
\end{thebibliography}
\end{document}