Markdown

Feb 26th, 2020 - Now

Symbols

符号LaTeX语法显示效果

分数

\frac{a}{b}

$\frac{a}{b}$

根式

\sqrt[n] {a}

$\sqrt[n] a$

对勾

\checkmarks

$\checkmark$

错叉

\times

$\times$

并集

\cup

$\cup$

交集

\cap

$\cap$

差集

\setminus

$\setminus$

子集

\subset

$\subset$

子集

\subseteq

$\subseteq$

非子集

\subsetneq

$\subsetneq$

父集

\supset

$\supset$

属于

\in

$\in$

不属于

\notin

$\notin$

空集

\emptyset

$\emptyset$

\varnothing

$\varnothing$

排列

\binom{n}{k}

$\binom{n}{k}$

排列

{n} \choose {k}

${n} \choose {k}$

右箭头

\to

$\to$

右箭头

\rightarrow

$\rightarrow$

左箭头

\leftarrow

$\leftarrow$

大右箭头

\Rightarrow

$\Rightarrow$

大左箭头

\Leftarrow

$\Leftarrow$

映射箭头

\mapsto

$\mapsto$

逻辑与

\land

$\land$

逻辑或

\lor

$\lor$

逻辑否

\lnot

$\lnot$

全称量词

\forall

$\forall$

存在量词

\exists

$\exists$

断定符

\vdash

$\vdash$

满足符

\vDash

$\vDash$

异或

\oplus

$\oplus$

恒等于

\equiv

$\equiv$

约等于

\approx

$\approx$

模运算

a \equiv b \pmod n

$a \equiv b \pmod n$

偏低的点

\ldots

$\ldots$

中间的点

\cdots

$\cdots$

中间的单点

\cdot

$\cdot$

MkDocs

Project documentation with Markdown. MkDocs - Official Site

Diagram

Ref: Draw Diagrams With Markdown

Mermaid

Workflow charts supported by mermaid

stateDiagram-v2
    [*] --> Still
    Still --> [*]

    Still --> Moving
    Moving --> Still
    Moving --> Crash
    Crash --> [*]

PlantUML

Examples in real-world-plantuml

@startuml
start
:Init Phase;
:Transfer Phase;
note right
  long running activity,
  process requires signal to proceed
end note
:Termination Phase;
stop
@enduml

Reference

Last updated