我成功地使用 gather* 将方程组居中对齐。但是,如果我这样做:
\begin{gather*}
\rho=a*b \\
\alpha=2*\rho.
\label{eqn_one}
\end{gather*}
它显示两个方程式中心对齐(这是我想要的),但它没有方程标签。我只想要 1 个标签来标记这两个方程式。
答案1
尝试
\begin{equation}
\begin{gathered}
\rho=a*b \\
\alpha=2*\rho.
\label{eqn_one}
\end{gathered}
\end{equation}
equation
为内容提供一个数字,位于gathered
环境中。数字垂直居中。它将两个方程式居中。要使用,您需要在前言中gathered
加载包。amsmath
答案2
删除方程编号的命令是\notag
。这里是 MWE。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather}
\rho=a*b \notag\\
\alpha=2*\rho.
\end{gather}
\end{document}