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>

颜色

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