如何使用 natbib 在 eg 引文中偷偷添加脚注?
例如,
\begin{filecontents*}{\jobname.bib}
@article{cite1,
title={Title},
author={Smithy, A.},
journal={Journal Name},
volume={100},
pages={100--101},
year={2000}
}
@article{cite2,
title={Title},
author={Jonesy, A.},
journal={Journal Name},
volume={100},
pages={100--101},
year={2000}
}
\end{filecontents*}
\documentclass[12pt]{report}
\usepackage{natbib}
\begin{document}
blah blah \citep[e.g.][]{cite1, cite2} blah blah
\end{document}
使用\citep[e.g.][]{cite1 \footnote{Say something here}, cite2}
会引发错误(它不需要嵌套括号)。
最终目标如下: