📅  最后修改于: 2020-10-13 09:49:11             🧑  作者: Mango
% -表示源中的注释。
{ \def#1 }
%表示源代码中的注释。未在最终输出中呈现。
%注意:(x + 1)^ 2不是x ^ 2 +1不会被打印
% Note: (x+1)^2 is NOT x^2 + 1
(x+1)^2 % original expression
= (x+1)(x+1) % definition of exponent
= x^2 + 2x + 1 % FOIL, combine like terms