为数学证明添加逐行注释

为数学证明添加逐行注释

能否逐行添加对我的证明的讨论?我使用的是 Harvey Mudd 大学数学模板,因此包或类编辑的数量越少越好。

我正在寻找以下内容:

关于证明的方程线评论

3+x=4 我们正在尝试求解 x

x=4-3 从两边减去 3

x=1 x 必须为 1

答案1

有很多方法可以做到这一点。请参阅 Herbert Voss 的 对 (La)TeX 中的数学进行全面回顾

但是,一种方法是使用包align中的环境amsmath

在此处输入图片描述

另一个需要考虑的选项是使用\intertext(或\shortintertextmathtools产生更紧密间距的包中):

在此处输入图片描述

代码:align

\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}

代码:\shortintertext

\documentclass{article}
\usepackage{mathtools}

\begin{document}
\begin{align*}
\shortintertext{We are trying to solve for $x$:}
    3+x &=4 \\
\shortintertext{Subtract 3 from both sides:}
    x &=4-3 \\
\shortintertext{Hence, $x$ must be one:}
    x &=1 
\end{align*}
\end{document}

相关内容