赞
踩
LaTeX 用于排版数学的功能使其成为编写技术文档的令人信服的选择。本文展示了开始使用 LaTeX 编写数学所需的最基本命令。
在 LaTeX 中编写基本方程很简单,例如:
\documentclass{article}
\begin{document}
The well known Pythagorean theorem \(x^2 + y^2 = z^2\) was
proved to be invalid for other exponents.
Meaning the next equation has no integer solutions:
\[ x^n + y^n = z^n \]
\end{document}
如您所见,方程的显示方式取决于分隔符,在本例中为\[...\]
和\(...\)
。
L A T E X允许数学表达式的两种书写模式:内联数学模式和显示数学模式:
您可以使用这些“分隔符”中的任何一个在内联模式下排版您的数学:
\(...\)
\$...\$
\begin{math}...\end{math}
.使用以下结构之一在显示模式下排版数学:
\[...\]
\begin{displaymath}...\end{displaymath}
\begin{equation}...\end{equation}
以下示例使用包equation*
提供的环境amsmath
有关详细信息,请参阅文章。
asmath
\documentclass{article} \usepackage{amsmath} % for the equation* environment \begin{document} This is a simple math expression \(\sqrt{x^2+1}\) inside text. And this is also the same: \begin{math} \sqrt{x^2+1} \end{math} but by using another command. This is a simple math expression without numbering \[\sqrt{x^2+1}\] separated from text. This is also the same: \begin{displaymath} \sqrt{x^2+1} \end{displaymath} \ldots and this: \begin{equation*} \sqrt{x^2+1} \end{equation*} \end{document}
参考指南
下面是一个包含一些常见数学符号的表格。如需更完整的列表 ,请参阅List_of_Greek_letters_and_math_symbols:
描述 | 代码 | 例子 |
希腊字母 | \alpha \beta \gamma \rho \sigma \delta \epsilon | |
二元运算符 | \times \otimes \oplus \cup \cap | |
关系运算符 | < > \subset \supset \subseteq \supseteq | |
其他 | \int \oint \sum \prod | |
不同类别的数学符号具有不同的格式(例如,变量是斜体,但运算符不是)和不同的间距。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。