如何强制文本位于左侧并且方程式位于投影仪对齐的中心

如何强制文本位于左侧并且方程式位于投影仪对齐的中心

我有这个乳胶代码:

\documentclass{beamer}
\usepackage{amsmath}
\usepackage{xcolor}
\title{Amsmath example}
\author{Overleaf}
\date{May 2021}
\begin{document}
\definecolor{bettergreen}{RGB}{84,196,94}
\begin{frame}{Formalisation}
    Après une itération de 2-Opt,
\begin{align*}
    &\pi = a_1,\ldots,\textcolor{red}{a_i,a_{i+1}},
    \ldots,\textcolor{red}{a_j,a_{j+1}},\ldots, a_n\\
    \text{
        est transformé en}\\
            &\pi' = a_1, \ldots, \textcolor{bettergreen}{a_i,a_j,} a_{j-1}, \ldots, \textcolor{bettergreen}{a_{i+1}, a_{j+1}}, \ldots,a_n 
    \end{align*}
\end{frame}
\end{document}

编译如下: 在此处输入图片描述

我希望“est transformé”与“Après une itération”对齐,并且π公式居中,并π'与其对齐。

答案1

如果您想在align环境内写入文本,但就像它是周围的文本一样,请使用\intertext{...}而不是\text{...}像在 MWE 中那样。

相关内容