我的参考文献中的上标--bibtex

我的参考文献中的上标--bibtex

我正在使用 bibtex 编辑我的参考文献。我的代码如下:

@article{goldbeter1990,
    author = "A and B",
    title = "Model for signal-induced Ca2+ and IP3 oscillations",
    journal = "ABC",
    volume = "87",
    pages = "1-11",
    year = "1990",
}

在“标题”部分,我想将“2+”设为上标,将“3”设为下标。

我怎样才能得到它?

答案1

bibtex 中的字段可以使用普通下标$_{}$和上标命令。$^{}$

以下 MWE

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{paper.bib}
@article{goldbeter1990,
    author = "A and B",
    title = "Model for signal-induced {Ca$^{2+}$} and {IP$_3$} oscillations",
    journal = "ABC",
    volume = "87",
    pages = "1-11",
    year = "1990",
}
\end{filecontents}

\begin{document} 
A non-linear model of the gap junctional mechanisms was developed to demonstrate 
long-range propagation of intercellular Ca$^{2+}$ waves in networks of astrocytes 
\cite{goldbeter1990}. 

\bibliographystyle{plain} 
\bibliography{paper} 
\end{document} 

生成正确的上标和下标。

在此处输入图片描述

相关内容