我可以在 natbib 例如引文中添加脚注吗?

我可以在 natbib 例如引文中添加脚注吗?

如何使用 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}会引发错误(它不需要嵌套括号)。

最终目标如下:

在此处输入图片描述

答案1

我假设这不是你经常做的事情。对于一次性的事情,我会将其分成两个不同的引用命令,即使这意味着手动添加括号:

blah blah (\citealp[e.g.][]{cite1},\footnote{Say something here.} \citealp{cite2}) blah blah

引文脚注

(编辑:我想您可以将逗号和\footnote命令按相反的顺序放置以使其更像您的图片,但我认为脚注标记在逗号后看起来更好。)

相关内容