---
title: Liii STEM 数学字体样式参考 - 希腊字母与花体
description: Liii STEM 数学字体样式完整参考，包含希腊字母、粗体、斜体、花体、黑板粗体、手写体等字体样式的使用方法与快捷键。
---

> ## Documentation Index
> Fetch the complete documentation index at: https://liiistem.cn/docs/llms.txt
> Use this file to discover all available pages before exploring further.


# 字体与样式

## 希腊字母

|            字母            |  快捷键   |         说明         |
| :------------------------: | :-------: | :------------------: |
|          $\alpha$          | `a` `Tab` | 小写按小写字母 + Tab |
|          $\beta$           | `b` `Tab` |                      |
|     $\gamma$, $\Gamma$     | `g` `Tab` | 大写按大写字母 + Tab |
|     $\delta$, $\Delta$     | `d` `Tab` |                      |
| $\epsilon$ / $\varepsilon$ | `e` `Tab` | 连续按 Tab 切换变体  |
|     $\theta$, $\Theta$     | `j` `Tab` |                      |
|    $\lambda$, $\Lambda$    | `l` `Tab` |                      |
|           $\mu$            | `m` `Tab` |                      |
|        $\pi$, $\Pi$        | `p` `Tab` |                      |
|     $\sigma$, $\Sigma$     | `s` `Tab` |                      |
|       $\phi$, $\Phi$       | `f` `Tab` |                      |
|       $\psi$, $\Psi$       | `y` `Tab` |                      |
|     $\omega$, $\Omega$     | `w` `Tab` |                      |

某些字母有多个变体，连续按 Tab 切换。

## 基本样式

|           样式            |      快捷键      |
| :-----------------------: | :--------------: |
|   $\mathbf{A}$（粗体）    | `Ctrl` + `b` `A` |
|   $\mathit{A}$（斜体）    | `Ctrl` + `i` `A` |
| $\underline{A}$（下划线） | `Ctrl` + `u` `A` |

## 花体与哥特体

|           样式           |  快捷键  |
| :----------------------: | :------: |
|  $\mathcal{A}$（花体）   | `F7` `A` |
| $\mathfrak{A}$（哥特体） | `F8` `A` |

花体常用于表示集合、拓扑空间，仅大写拉丁字母有花体。哥特体较少使用，偶尔见于代数几何。

## 黑板粗体

|     样式     | 快捷键  |
| :----------: | :-----: |
| $\mathbb{A}$ | `A` `A` |

双写字母在数学模式下自动识别为黑板粗体。常用数集包括：$\mathbb{N}$（自然数集）、$\mathbb{Z}$（整数集）、$\mathbb{Q}$（有理数集）、$\mathbb{R}$（实数集）、$\mathbb{C}$（复数集）。

## 选读：与 LaTeX 的对比

在 Liii STEM 中，数学字体与样式可以通过快捷键及 Tab 键快速切换或双写输入。而在 LaTeX 中，切换数学样式通常需要调用繁复的字体宏命令，且某些特定字体还需要导入外部宏包。

例如，在 LaTeX 中排版希腊字母，必须使用对应的英文拼写宏命令：

```latex
\alpha \quad \beta \quad \gamma \quad \Gamma
```

对应的渲染效果如下：

$$
\alpha \quad \beta \quad \gamma \quad \Gamma
$$

如果需要切换粗体形态，在 LaTeX 中通常使用：

```latex
\mathbf{A}
```

对应的渲染效果如下：

$$
\mathbf{A}
$$

对于表示集合的花体（Caligraphic）和代数中的哥特体（Fraktur），在 LaTeX 中你需要分别键入：

```latex
\mathcal{A} \quad \text{与} \quad \mathfrak{A}
```

对应的渲染效果如下：

$$
\mathcal{A} \quad \text{与} \quad \mathfrak{A}
$$

其中 `\mathfrak` 命令默认是不提供支持的，你必须额外加载 `amssymb` 或者是 `amsfonts` 宏包。

对于表示数集的黑板粗体（Blackboard Bold），Liii STEM 支持通过简练的双写字母直接自动识别，但在 LaTeX 中你仍需要使用特定命令：

```latex
\mathbb{R} \quad \text{和} \quad \mathbb{C}
```

对应的渲染效果如下：

$$
\mathbb{R} \quad \text{和} \quad \mathbb{C}
$$

这同样需要预先加载 `amssymb` 宏包才能正常渲染。

**如果您已经有现成的 $\LaTeX$ 代码，也可以直接使用[魔法粘贴](../tutorial/tuto-magic-paste.md)到 Liii STEM 中进行转换。**
