这是我的代码:
\begin{equations}
\begin{align}
\lamba = \frac{x}{2}
\end{align}
\end{equations}
但\lamba
显示的内容只是一片空白。
答案1
您将找到全面的文档在线的关于排版方程式。您还可以谷歌例如,你会发现几个例子和解释。其中一个汇编是斯蒂芬·M·莫泽。
下面是一个 MWE,可以帮助您入门。
您必须使用该amsmath
包。
要排版内联方程式,您可以使用 LaTeX 简写\(...\)
或 Tex 简写$...$
。对于编号方程式,您必须使用环境equation
。请参阅以下示例:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
We can use the \LaTeX~shorthand for inline equations such as \( \alpha = \beta +
\gamma + \lambda \).
For numbered equations we can use the \texttt{equation} environment.
\begin{equation}
\alpha = \beta + \gamma + \lambda
\end{equation}
If we do not want the equations to be numbered, we may use the
\texttt{equation*} environment.
\begin{equation*}
\alpha = \beta + \gamma + \lambda
\end{equation*}
The \texttt{align} and/or \texttt{eqnarray} environment is used to group together multiple
equations and align them using \texttt{\&}
\begin{align}
\alpha &= \beta + \gamma * \lambda \\
\theta &= \frac{\alpha}{4}
\end{align}
\end{document}