使用比 {split} 更好的方法来对齐方程?

使用比 {split} 更好的方法来对齐方程?

我正在使用以下代码,想知道是否有办法让第三项的减号( - )与第二项的减号对齐,或者是否有更好的方法来总体设置它同时保持两列布局?

另外,是否可以将第三项外面的括号稍微大一点?

\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{a4wide}
\usepackage{multicol}


\begin{document}
\begin{multicols*}{2}
\begin{equation}
\begin{split}
\frac{d^2x}{d\theta^2}=-r\cos(\theta) - \frac{r^2(\cos^2(\theta) -\sin^2 (\theta))}{\sqrt{l^2-r^2\sin^2(\theta)}}
\\-\frac{r^4\sin^2(\theta) \cos^2 (\theta)}{(\sqrt{l^2-r^2\sin^2 \theta})^3}
\end{split}
\end{equation}
\end{multicols*}{2}
\end{document}

答案1

您应该&在适当的地方使用。

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{amsmath}
%
\begin{document}
\begin{equation}
\begin{split}
\frac{d^2x}{d\theta^2}=-r\cos(\theta) & % one & here <================
- \frac{r^2(\cos^2(\theta) -\sin^2 (\theta))}{\sqrt{l^2-r^2\sin^2(\theta)}}\\
 & % another & here <=============
 -\frac{r^4\sin^2(\theta) \cos^2 (\theta)}{\left(\sqrt{l^2-r^2\sin^2 \theta}\right)^3}
\end{split}
\end{equation}
\end{document}

然后你就会得到想要的对齐方式。我还把第三项周围的括号放大了。

amsldoc.pdf您可以在(ams 文档)第 15 页底部找到分隔符。我已为您附加了屏幕截图。在此处输入图片描述

相关内容