聚集与对齐 - 用一个数字居中方程

聚集与对齐 - 用一个数字居中方程

gather和之间如何实现某种目标aligned

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[utf8]{inputenc}

\begin{document}
\begin{gather}
    3(a-x) = 3.5x + a - 1 \\
    3a - 3x = 3.5x + a -1 \\
    a = \frac{13}{4}x - \frac{1}{2} 
\end{gather}

\begin{equation}
    \begin{aligned}
        3(a-x) = 3.5x + a - 1           \\
        3a - 3x = 3.5x + a -1           \\
        a = \frac{13}{4}x - \frac{1}{2} 
    \end{aligned}
\end{equation}
\end{document}

结果:

在此处输入图片描述

但是...如何实现这样的目标?我想保持居中。 在此处输入图片描述

这可能吗?

答案1

gathered您正在寻找的是数学模式中使用的环境。

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{equation}
\begin{gathered}
3(a-x) = 3.5x + a - 1 \\
3a - 3x = 3.5x + a - 1 \\
a = \frac{13}{4}x - \frac{1}{2}
\end{gathered}
\end{equation}
\end{document}

输出

Wikibooks LaTeX 有一个相当不错的清单不同类型的方程和对齐环境。

相关内容