如何排版九行方程式

如何排版九行方程式

enter image description here

哪种结构可以创建一个与上述方程式最接近的方程式?\begin{equation}...\end{equation}默认情况下,它似乎不会换行,更不用说让它看起来这么漂亮了。

答案1

我的建议:使用嵌套的equation/aligned[b]环境以及&\quad(twice) 和&\qquad (six times) 语句在第 2 行到第 9 行执行水平对齐。

enter image description here

\documentclass{article}
\usepackage{amsmath} % for 'aligned' environment
\usepackage{newtxtext,newtxmath} % optional
\setlength\textwidth{2in} % just for this example
\begin{document}
\setcounter{equation}{8} % just for this example
\begin{equation}
\begin{aligned}[b]
\frac{X_{12}}{i}
&=      \Bigl[\Bigl\{\Bigl[(a_{k_{+}}\cdots\Bigr]  \\
&\qquad+\Bigl[\Bigl(\frac{u}{v}\cdots\Bigr] \\
&\qquad+\Bigl[\Bigl(\frac{m}{n}\cdots\Bigr]\Bigr\}\Bigr] \\
&\quad -\Bigl[\Bigl\{\Bigl[\Bigl(\frac{a_{k_{+}}}{\sqrt{2}}\cdots\Bigr]\\
&\qquad+\Bigl[\Bigl(\frac{x}{z}\cdots\Bigr] \\
&\qquad+\Bigl[\Bigl(\frac{p}{q}\cdots\Bigr]\Bigr\}\Bigr] \\
&\quad +\Bigl\{\Bigl[\Bigl(a_{k_{+}}\cdots\Bigr]\\
&\qquad+\Bigl[\Bigl(\frac{f}{g}\cdots\Bigr] \\
&\qquad+\Bigl[\Bigl(\frac{k}{l}\cdots\Bigr]\Bigr\}
\end{aligned}
\end{equation}
\end{document}

相关内容