修改公式

This commit is contained in:
2025-08-11 00:54:32 +08:00
parent 6c061b1e58
commit 423cd07cd9
4 changed files with 23 additions and 5 deletions

View File

@@ -140,8 +140,9 @@ d_{x + 1, y + 1} &\leftarrow d_{x + 1, y + 1} + 1
$$
### 以下是使用mate字段包裹
```math
### 以下是使用mate字段包裹
```math[mate.md]
\begin{aligned}
d_{i, j} &\leftarrow d_{i, j} + 1 \\
d_{i, y + 1} &\leftarrow d_{i, y + 1} - 1 \\
@@ -170,6 +171,21 @@ d_{x + 1, y + 1} &\leftarrow d_{x + 1, y + 1} + 1
Mermaid 是强大的可视化工具,可以在 Markdown 中创建流程图、时序图等。
```mermaid
---
config:
layout: dagre
look: classic
---
flowchart LR
A[Start] --> B{Choose Path}
B -->|Option 1| C[Path 1]
B -->|Option 2| D[Path 2]
```
```mermaid
graph TD
A[Local Coolify 实例] --> B[生产服务器]