markdown特殊符號或語法歸納

符號打鉤 √ √

換行<br>

實心圓點 \cdot $\cdot$

空心圓 \circ $\circ$

上標 2n 2<sup>n</sup>

下標 xi x<sub>i</sub>

表格對齊
左對齊 :-
居中:-:
右對齊-:

文字背景色:markdown不支持html的style,原生語法中只能借用table的bgcolor,非常不好。


矩陣運算公式
[xy]=[αβ(1α)xcβycβαβxc+(1α)yc][xy1] \left[ \begin{matrix} x' \\ y' \end{matrix} \right] = \left[ \begin{matrix} \alpha & \beta & (1-\alpha)\cdot xc-\beta\cdot yc\\ -\beta & \alpha & \beta\cdot xc+(1-\alpha)\cdot yc \end{matrix} \right] \left[ \begin{matrix} x \\ y \\ 1 \end{matrix} \right]

$$
\left[ 
    \begin{matrix} 
    x' \\    
    y'
    \end{matrix} 
\right] =
\left[ 
    \begin{matrix}   
    \alpha & \beta & (1-\alpha)\cdot xc-\beta\cdot yc\\    
    -\beta & \alpha & \beta\cdot xc+(1-\alpha)\cdot yc   
    \end{matrix} 
\right]  
\left[ 
    \begin{matrix} 
    x \\    
    y \\    
    1
    \end{matrix} 
\right] 
$$

使用的HTML語法

修改表格樣式

版本號發佈日期版本類型備註
1.2
2020.4.15
beta
1.1
2019.9.1
alpha
1.0
2019.1.1
alpha
<table border="1"><tbody>
    <tr bgcolor="DarkOrchid">		
        <th>版本號</th><th>發佈日期</th><th>版本類型</th><th>備註</th>	
    </tr>
    <tr>
        <td><center><font color="Hotpink">1.2</font></center></td><td><center>2020.4.15</center></td><td><center>beta</center></td><td><center></center></td>
    </tr>	
    <tr>
        <td><center>1.1</center></td><td><center>2019.9.1</center></td><td><center>alpha</center></td><td><center></center></td>
    </tr>
        <tr>
        <td><center>1.0</center></td><td><center>2019.1.1</center></td><td><center>alpha</center></td><td><center></center></td>
    </tr>
</table>

顏色

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章