文本左对齐,公式居中

文本左对齐,公式居中

我想写下一些方程式,并在方程式之间添加一些注释。但是,方程式需要对齐,我希望注释向左对齐。我的代码是:

\begin{document}
\begin{align}
a+c&= b +d\\
a&= b+ d-c\\
\mbox{text at the left}\\
0&=b+d - a-c    
\end{align}
\end{document}

在这样的环境下是否可行align

答案1

% arara: pdflatex

\documentclass{article}
\usepackage{blindtext}
\usepackage{mathtools}

\begin{document}
\blindtext
\begin{align} 
a+c&= b +d\\
a&= b+ d-c\\ 
\shortintertext{text at the left} 
0&=b+d - a-c    
\end{align}
\blindtext
\end{document}

在此处输入图片描述

如果文本比示例中的文本长,则应使用\intertext。后者amsmath也包括在内。

相关内容