枚举公式

枚举公式

我正在用 LaTeX 写一篇数学论文,对于数学公式我只使用$$math formula$$。 是否可以对公式进行数字表示? 或者我必须使用一些特定的命令,例如align

答案1

对于内联数学,请使用$...$(或\( ... \))。对于显示数学样式方程式,如果使用,aligned则与 对齐enumerate效果\item会更好:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{enumerate}
\item $\begin{aligned}[t]
    E &= mc^2 \\
    F & = ma
\end{aligned}$
\item $\begin{aligned}[t]
    E &= mc^2 \\
    F & = ma
\end{aligned}$
\end{enumerate}
\end{document}

答案2

香草显示方程习语:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

The \verb|equation| environment creates numbered formulas you can
label and refer to elsewhere:
%  this commented blank line prevents start of a new paragraph
\begin{equation}\label{eq:pythagoras}
a^2 + b^2 = c^2 .
\end{equation}
%  this commented blank line prevents start of a new paragraph
Equation~\ref{eq:pythagoras} is the heart of the Pythagorean theorem.

Use the \verb|\eqref| macro to put parentheses around equation
references: \eqref{eq:pythagoras}.

For equations with no numbers, use \verb|equation*|:
%
\begin{equation*}
2 + 2 = 4 .
\end{equation*}

For multiline formulas, use \verb|align| or \verb|align*|:
%
\begin{align}
e^{i\pi} & = \cos(\pi) + i\sin(\pi) \notag \\
         & = -1 .
\end{align}

\end{document}

在此处输入图片描述

编辑: TeX如果在这些环境之一的 之前看到空白行,就会报错\end。调试该错误消息很困难,因为您倾向于认为它TeX会自动处理空白。请参阅 “使用 \align* 扫描时文件结束”

相关内容