AMS-LaTeX
AMS-LaTeX是一个包含数学公式所需符号、排版、字体的LaTeX文档类和宏包集合。其开发主要参考了美国数学协会在数学期刊和书籍排版工作中的经验,以AMS-LaTeX撰写的文章可被该协会旗下期刊接受。[1]
以下LaTeX2e代码可以生成 AMS-LaTeX的标志:
%%% -- AMS-LaTeX_logo.tex -------
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\AmS-\LaTeX
\end{document}
该宏包有一套工具来处理多行公式。例如:
\begin{align}
y &= (x+1)^2 \\
&= x^2+2x+1
\end{align}
该代码可以使两行中的等号对齐,如下所示:
AMS-LaTeX 还包括许多灵活的命令,用于排版和对定理、引理等生成编号。 例如,可以使用theorem环境
\begin{theorem}[Pythagoras] Suppose $a\leq b\leq c$ are the side-lengths of a right triangle.\\ Then $a^2+b^2=c^2$.\end{theorem}
\begin{proof}. . . \end{proof}
可以生成
Theorem (Pythagoras) Suppose are the side-lengths of a right triangle. Then . Proof. . . □
参见
参考资料
外部链接
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.