当前位置:   article > 正文

LaTex 数学之数学表达式_latex方程

latex方程

LaTex 数学之数学表达式

数学表达式

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}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在这里插入图片描述
如您所见,方程的显示方式取决于分隔符,在本例中为\[...\]\(...\)

数学模式

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}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

在这里插入图片描述

参考指南

参考指南
下面是一个包含一些常见数学符号的表格。如需更完整的列表 ,请参阅List_of_Greek_letters_and_math_symbols

描述代码例子
希腊字母\alpha \beta \gamma \rho \sigma \delta \epsilonα β  γ ρ σ  δ ε
二元运算符\times \otimes \oplus \cup \cap在这里插入图片描述
关系运算符< > \subset \supset \subseteq \supseteq{\displaystyle <\ >\subset \ \supset \ \subseteq \ \supseteq }
其他\int \oint \sum \prod{\displaystyle \int \ \oint \ \sum \ \prod }

不同类别的数学符号具有不同的格式(例如,变量是斜体,但运算符不是)和不同的间距。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号