抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

靖待的技术博客

小清新IT旅程 | 为中华之崛起而读书


配图


  自查笔记。

  
  

标题

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

例:

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

加粗

*斜体文本*
例:斜体文本
_斜体文本_
例:斜体文本
**粗体文本**
例:粗体文本
***粗斜体文本***
例:粗斜体文本
___粗斜体文本___
例:粗斜体文本

链接

  网址链接 [网站名](http://网址)

引用

  链接用 1 作为网址变量[例子1][1].
  链接用 hubojing 作为网址变量[例子2][hubojing].
  然后在文档的结尾为变量赋值(网址)
[1]:hubojing.github.io
[hubojing]:https://hubojing.github.io

图片

![引用名称](引用地址)
例:
引用名称
内联方式:![alt text](/path/to/img.jpg “Title”)
例:
alt text

分隔符

三个星号***
例:


三个减号---(上面一行文字需空一行,否则自动变为二级标题)

例:

三个下划线___
例:


转义符

  如果描述中用到 markdown 符号,比如 _ # * 等,又不想它被转义,此时可在这些符号前加反斜杠,如 \# 进行避免。

块注释(blockquote)

- 是这样?
> like this.
例:

  • 是这样?

    like this.

删除线

~~这是删除线~~
例:这是删除线

换行

打两个空格再回车

标记

1
`blockquote`

例:blockquote

语言使用范围

http://blog.csdn.net/peng_hong_fu/article/details/52805408

缩进

法一
  将输入法切换成全角 两个空格
法二
  在每一行开头,先输入下面的代码,然后紧跟着输入文本即可。

  半角空格: & ensp;(去掉&和ensp的空格)或  
  全角空格: & emsp;(去掉&和emsp的空格)或  
  不换行空格: & nbsp;(去掉&和nbsp的空格)或  
  注意分号

公式

\$y = x^2\$
公式居中 \$\$y = x^2\$\$
例:
$y = x^2$
$$y = x^2$$

分式

法一
\frac
例:\$\frac {a+b}{c+d}\$
$\frac {a+b}{c+d}$
法二
\over
例:\$a+1 \over b+1\$
$a+1 \over b+1$

根号

sqrt
例:\$sqrt[3]{\frac xy}\$
\$\sqrt{a+b}\$
$\sqrt[3]{\frac xy}$
$\sqrt{a+b}$

求和

\sum
例:\$\sum_{k=1}^n\$
$\sum_{k=1}^n$

连乘

\prod
例:\$\prod_{i=0}^n\$
$\prod_{i=0}^n$

符号

关系运算符

$\ast$ \ast
$\times$ \times
$\div$ \div
$\pm$ \pm
$\approx$ \approx
$\equiv$ \equiv
$\neq$ \neq
$\cdot$ \cdot
$\circ$ \circ
$\bigodot$ \bigodot
$\bigotimes$ \bigotimes
$\bigoplus$ \bigoplus
$\prod$ \prod
$\coprod$ \coprod

集合运算符

$\in$ \in
$\notin$ \notin
$\emptyset$ \emptyset
$\subset$ \subset
$\supset$ \supset
$\subseteq$ \subseteq
$\supseteq$ \supseteq
$\bigcap$ \bigcap
$\bigcup$ \bigcup

希腊字母

ϵ \epsilon
∂ \partial
λ \lambda
θ \theta
$\eta$ \eta
希腊字母

戴帽符号

\$\hat{xy}\$
$\hat{xy}$
\$\widehat{xyz}\$
$\widehat{xyz}$
\$\tilde{xy}\$
$\tilde{xy}$
\$\widetilde{xyz}\$
$\widetilde{xyz}$
\$\check{x}\$
$\check{x}$
\$\breve{y}\$
$\breve{y}$
\$\grave{x}\$
$\grave{x}$
\$\acute{y}\$
$\acute{y}$

空心符号

A~Z
A \mathbb{A}
$\mathbb{A}$

花体字母

A~Z
A \mathcal{A}
$\mathcal{A}$

箭头

$\uparrow$ \uparrow
$\downarrow$ \downarrow
$\leftarrow$ \leftarrow
$\rightarrow$ \rightarrow
$\updownarrow$ \updownarrow
$\leftrightarrow$ \leftrightarrow
$\Uparrow$ \Uparrow
$\Downarrow$ \Downarrow
$\Leftarrow$ \Leftarrow
$\Rightarrow$ \Rightarrow
$\Updownarrow$ \Updownarrow
$\Leftrightarrow$ \Leftrightarrow

括号

$$ f(x)=\left{
\begin{aligned}
x & = & 123 \
y & = & \cos(t) \
z & = & \frac 12
\end{aligned}
\right.$$

1
2
3
4
5
6
7
f(x)=\left\{
\begin{aligned}
x & = & 123 \\
y & = & \cos(t) \\
z & = & \frac 12
\end{aligned}
\right.

参考文章

评论