markdown中希腊字母加粗

对于markdown中数学公式等的书写往往使用"$公式$“或者”$$居中公式$$"。
比如直接嵌入公式可以这样 A x + b = 0 Ax+b=0 Ax+b=0,或者直接让其独占一行并居中,比如下面的矩阵
[ <mstyle displaystyle="false" scriptlevel="0"> 1 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 2 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 3 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 4 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 5 </mstyle> <mstyle displaystyle="false" scriptlevel="0"> 6 </mstyle> ] \left[ \begin{matrix} 1&2 \\ 3&4 \\ 5&6 \end{matrix} \right] 135246
但要让公式中的某些数学符号加粗显示,可以使用"$\mathbf{数学符号}$",比如 0123456789 \mathbf{0123456789} 0123456789
但此时要加粗希腊字母(比如书写向量或者矩阵时),该方法行不通了,在网上找到了解决方案,使用用"$\pmb{希腊字母}$",比如普通的 ω \omega ω和加粗后的 ω \pmb{\omega} ωωω
此外,对于斜体加粗可以使用"$\boldsymbol{希腊字母}$",比如直接加粗的 Ω \pmb{\Omega} ΩΩΩ和斜体加粗的 Ω \boldsymbol{\Omega} Ω