Tengo algunas ecuaciones matemáticas dentro de mi archivo LaTeX y normalmente las denoto con $
para ingresar al modo matemático. Para ecuaciones más largas, lo usaré, \begin{math} ...
pero por alguna razón esto me da un error que me indica que me falta un archivo $
.
\begin{center}
\begin{math}
\example{ \Delta G = \Delta H - T\Delta S }
\label{1st_ex}
\end{math}
\end{center}
me da
Missing $ inserted <inserted text> $ l.302 \example {\Delta ....
Incluso si lo inserto $
todavía me da ese error.
La función de ejemplo es
%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}
Respuesta1
Basándome únicamente en la información disponible en su pregunta, diré que tiene tres formas posibles de escribir la ecuación:
\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}
Lo que producirá un resultado como este: