📜  乳胶数学注释公式 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:20.608000             🧑  作者: Mango

代码示例1
\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{align*}
    3+x &=4 && \text{we are trying to solve for } x\\
    x &=4-3 && \text{Subtract 3 from both sides}\\
    x &=1   && x \text{ must be one}
\end{align*}
\end{document}