# 東南科大資科系 2021/3/19 課程範例
文章標題:
# 第一層級標題
## 第二層級標題
### 第三層級標題
#### 第四層級標題
##### 第五層級標題
###### 第六層級標題
本文內容
字體變化:
**粗體**
*斜體*
~~刪除線~~
---
無序列表:
* 列表一
* 列表二
* 列表三
確認盒:
- [x] 待辦事項一
- [ ] 待辦事項二
有序清單:
1. 清單一
1.1 子清單一
1.1.1 孫清單一
2. 清單二
2.1 子清單二
引用區塊:
> 引用區塊
>> 子引用區塊
>>> 子子引用區塊
網址連結:
直接網址:https://omnixri.blogspot.com
[行內連結](https://omnixri.blogspot.com)
[文字連結][reference text]
[數字連結][1]
[reference text]: https://omnixri.blogspot.com
[1]: https://omnixri.blogspot.com
載入圖片:

點擊圖片連結至YOUTUBE影片:
<a href="https://youtu.be/lfIVxTVrRFs
" target="_blank"><img src="https://i.ytimg.com/an_webp/lfIVxTVrRFs/mqdefault_6s.webp?du=3000&sqp=CNCHuYIG&rs=AOn4CLCyDxICZZnI0JdRwJHDsz1BtZdGwg"
alt="OmniXRI AIGO" width="240" height="180" border="10" /></a>
Markdown格式表格:
|標題一|標題二|標題三|
|:----|:----:|----:|
|內容向左靠|內容置中|內容靠左|
|xxxxxxxxxxxxxx|xxxxxxxxxxxxxx|xxxxxxxxxxxxxx|
|<font color=red>內容一</font>|<font color=#0000FF>內容二</font>|<div style="background-color:lightgrey">內容三</div>|
HTML簡單表格:
<table>
<tr>
<th>標題一</th>
<th>標題二</th>
<th>標題三</th>
</tr>
<tr>
<td>內容一</td>
<td>內容二</td>
<td>內容三</td>
</tr>
</table>
HTML複雜表格:
<table border="2" width="100%">
<tr style="color:blue;background:lightcyan; height:50px">
<th style="text-align:left" width="10%">標題一</th>
<th style="text-align:center" width="40%">標題二</th>
<th style="text-align:right" width="50%">標題三</th>
</tr>
<tr>
<td>內容一</td>
<td>內容二</td>
<td>內容三</td>
</tr>
</table>
程式碼:
```cpp
#include <iostream>
int main(int argc,char *argv[]){
printf("Hello World!");
return 0;
}
```
數學公式(latex):
行內公式:$\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))$
獨立公式:
$$
x = a_0 + \cfrac{1^2}{a_1
+ \cfrac{2^2}{a_2
+ \cfrac{3^2}{a_3
+ \cdots}}}
$$
流程圖:
```flow
st=>start: 開 始
op1=>operation: 操作一
cond1=>condition: 確認?
sub1=>subroutine: 副程式
e=>end: 結 束
st->op1->cond1
cond1(yes)->e
cond1(no)->sub1->op1
```