您可以在 HackMD 上撰寫出很多種圖表與數學表達式,請參考以下的範例:
## MathJax
您可以使用 **MathJax** 語法 來產生 *LaTeX* 數學表達式,如同 [math.stackexchange.com](http://math.stackexchange.com/),但是開始的 $ 後面以及結尾的 $ 前面不能有空白: The *Gamma function* satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via the Euler integral
使用區塊層級的數學式時,請在您的數學式之前與之後給予 $$ 以及換行:$$
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a}. $$ $$ \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. $$ [更多關於 **LaTeX** 數學表達式 ](http://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)
[更多關於 **流程圖** 語法 ](http://adrai.github.io/flowchart.js/)
---
### Graphviz
graphviz
digraph hierarchy {
nodesep=1.0 // increases the separation between nodes
node [color=Red,fontname=Courier,shape=box] //All nodes will this shape and colour
edge [color=Blue, style=dashed] //All the lines look like this
Headteacher->{Deputy1 Deputy2 BusinessManager}
Deputy1->{Teacher1 Teacher2}
BusinessManager->ITManager
{rank=same;ITManager Teacher1 Teacher2} // Put them on the same level
}