LaTeX 错误:缺少 $

LaTeX 错误:缺少 $

我的 LaTeX 文件中有一些数学方程式,我通常用 表示这些方程式以$进入数学模式。对于较长的方程式,我会使用,\begin{math} ...但出于某种原因,这会给我一个错误,告诉我我缺少一个$

\begin{center}
\begin{math}
\example{ \Delta G = \Delta H - T\Delta S }
\label{1st_ex}
\end{math}
\end{center}

给我

Missing $ inserted <inserted text> $ l.302 \example {\Delta ....

即使我插入$它仍然会出现那个错误。

示例函数是

%list of equations
\usepackage[titles]{tocloft}
\newcommand{\listexamplename}{List of Equations}
\newlistof{example}{exp}{\listexamplename}
\newcommand{\example}[1]{%
\refstepcounter{example}
\par\noindent\text{Equation \theexample. #1}
\addcontentsline{exp}{example}
{\protect\numberline{\thechapter.\theexample}#1}\par}

答案1

仅根据你问题中提供的信息,我会说你有三种可能的方法来写出这个等式:

\documentclass{article}
\begin{document}

\begin{equation}
    \Delta G = \Delta H - T\Delta S 
\label{eq:1st_ex}
\end{equation}

$\Delta G = \Delta H - T\Delta S $

\[\Delta G = \Delta H - T\Delta S \]

\end{document}

这将产生如下输出:

在此处输入图片描述

相关内容