使用下標引用 .bib 文件

使用下標引用 .bib 文件

在我引用我的 .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

相關內容