freeCodeCamp/guide/chinese/miscellaneous/learn-about-the-latex-language/index.md

47 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Learn About the Latex Language
localeTitle: 了解乳胶语言
---
LaTeX发音为LAH-tekh或LAY-tekh专为生产技术和科学文档而设计。您可以使用此排版系统轻松创建矩阵数组和其他数学函数。用户可以使用代码而不是图形用户界面GUI格式化其文档。
`$$ (latex language) $$`
您可以在GitterIM中嵌入Latex。例子
## 排列
```
$$\begin{array} {cc}
arr11 & arr12\\
arr21 & arr22\\
\end{array}$$
```
## 矩阵
```
$$\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$$
```
## 格式化
```
$$\huge\textstyle\color{#F00}{BigRed}\small\textstyle\color{#0F0}{SmallGreen}$$
```
[功能支持](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)
## 细节
[KaTeX Github Repo](https://github.com/Khan/KaTeX) LaTeX是一种高品质的排版系统;它包括为生产技术和科学文档而设计的功能。 LaTeX是科学文献交流和出版的事实标准。他的优点在书籍论文或论文等长文档中都很明显。
Gitter使用KatexLaTeX的自定义实现可以使用它来介绍以下代码
```
$$\begin{array} {cc}
item11 & item12\
item21 & item 22\
\end{array}
$$
```
文本:
* `$$\huge\textstyle{some text}$$` - > $$ \\ huge \\ textstyle {some text} $$
* `$$\color{#F90}{some text}$$` - > $$ \\ color {F90} {some text} $$