Latex 中带有尖括号的方程式

Latex 中带有尖括号的方程式

我该怎么做这样的事情:

    f(x)
=      < Justification >
    x + y + a
=      < according to ... >
    abc

我应该使用哪种数学环境来获得此类方程式?我如何并排显示 2 个这样的块?

答案1

我会这样做(这也节省空间)。

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
  \begin{alignedat} {4}
    f(x) &= x + y + a & \qquad &  \text{(You say it)}\\
         &= abc       & \qquad &  \text{(According to me)}
  \end{alignedat}
\]
\end{document}

在此处输入图片描述

相关内容