当的参数中有下划线时\cite{}
,是否需要\
在下划线前面包含?
例如
\cite{Plos_One}
答案1
简短回答:不——除非你还加载了下划线包或者以其他方式修改了字符的默认属性_
。(如果你这样做了,我会认为你对 TeX 和 LaTeX 足够熟悉,这样就不会首先问这个问题了……)
更长的答案:尝试编译以下最小工作示例并检查是否生成错误或警告消息。
\documentclass{article}
\begin{document}
\cite{Plos_One}
\begin{thebibliography}{9}
\bibitem{Plos_One} AAA, BBB, CCC.
\end{thebibliography}
\end{document}