当我引用我的 .bib 文件并给出以下参考后,无法进行编译:
title = {{Modeling O₂ transport as an integrated system limiting V(O₂MAX}},
有什么帮助吗?
答案1
在 LaTeX 中,数学和其他特殊结构需要以特殊方式输入。就你的情况而言,你希望使用化学式,一种方便的输入方法是\ce
通过mhchem
包裹:
\documentclass{article}
\usepackage[version=3]{mhchem}
\begin{document}
\cite{Author:O-MAX}
\bibliographystyle{plain}
\bibliography{mybib}
\end{document}
和mybib.bib
:
@Article{Author:O-MAX,
author = {Author, A. N.},
title = {Modeling \ce{O2} transport as an integrated system
limiting \ce{V(O2MAX)}},
journal = {Chem. J.},
year = 2000
}
在您的原始示例中,下标不是标准的 ascii 字符,因此程序无法理解bibtex
。