以下公式不在乳胶中显示。此外,介绍性文字无法正确显示(所有单词加在一起,不能有空格和斜体)
A common form of this potential is the 12-6 Lennard Jones (LJ) potential
expressed as equation 2.7
\begin{align}
U_{ij}= 4\epsilon_{ij}[(\frac{\sigma_{ij}}{r_{ij})^12-
(\frac{\sigma_{ij}}{r_{ij})^6]
\end{align}
此外,在下面的文本中,所有单词都在一起,没有空格且用斜体显示。
Where \epsilon_{ij} and \sigma{ij} represent well depth and diameter of
the atom respectively. \epsilon_{ij} and \sigma_{ij} for unlike atoms
are determined using Lorentz-Berthelot combination rules [44] given in
equations 2.8 and 2.9
感谢您的帮助。 我在这里附上输出图片。
答案 0 :(得分:0)
这是因为您没有正确使用内联数学模式。在您发布的图片中
它显示您的文本之前(看起来像)\epsilon_{ij}
。 \epsilon
需要数学字体,因此您应该使用$\epsilon_{ij}$
。您要排版的任何内联数学也是如此。这将是建议的/正确的编码:
A common form of this potential is the 12-6 Lennard Jones (LJ) potential
expressed as equation~\eqref{eq:lj-potential},
\begin{equation}
U_{ij} = 4 \epsilon_{ij} [ (\frac{\sigma_{ij}}{r_{ij})^{12}
- (\frac{\sigma_{ij}}{r_{ij})^6 ] \label{eq:lj-potential}
\end{equation}
where $\epsilon_{ij}$ and $\sigma{ij}$ represent well depth and diameter of
the atom respectively. $\epsilon_{ij}$ and $\sigma_{ij}$ for unlike atoms
are determined using Lorentz-Berthelot combination rules~\cite{lorentz-berthelot}
given in equations~\eqref{eq:epsilon} and~\eqref{eq:sigma}.
请注意以下几点:
对单行编号的方程式使用equation
; align
用于多行方程(可能需要对齐)。
在equation
之前没有空白行(段落分隔符)。
使用\label
和\ref
(或\eqref
,因为您使用的是amsmath
),因为等式编号可以更改。让TeX负责存储和调用这些数字。
使用\cite
引用书目中的内容。
将$
... $
(或\(
... \)
)用于内联数学(上面已经讨论过)。
答案 1 :(得分:0)
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
U_{ij}= 4\epsilon_{ij}[
(\frac{
\sigma_{ij}
}{
(r_{ij})^{12} -
\frac{
\sigma_{ij}
}{(r_{ij})^6
}
}]
\end{align}
\end{document}