在环境 {align} 中对齐

在环境 {align} 中对齐

在此处输入图片描述

如何在对齐环境中右对齐红色内容?我尝试使用 flushright 但不起作用。谢谢

答案1

alignat您可以使用和的组合使方程式居中,并使文本在右侧对齐\rlap(在一定限制内):

\documentclass{article}
\usepackage{showframe}
\renewcommand{\ShowFrameLinethickness}{0.2pt}
\usepackage{mathtools}
\DeclarePairedDelimiter{\norm}\lVert\rVert

\begin{document} 

\setcounter{section}{3}
\setcounter{equation}{23}
\counterwithin{equation}{section}

\noindent We have
\begin{alignat}{2}
\norm{\mathcal{G}}_{\alpha p} &\le N 
\norm{\mathcal{G}(u)}_{\mathcal{H}^{s, p}_{r}(a)}, &\quad& \rlap{\small por (3.16)}\\
&=N \norm{V(\cdot, u)}_p&&\rlap{\small por 
Teorema 3.1}\\
&\le 2^p C^p N\bigl(\norm{h}_p + 
\norm{u}^{\alpha}_{\alpha p} \bigr)&& \rlap{\small por (3.23)}
\end{alignat}

\end{document} 

在此处输入图片描述

相关内容