有没有办法控制 Jupyter Notebook 中方程式中的字体大小?

Is there a way to control the font size in the equation in JupyterNotebook?

在 Jupyter Notebook markdown 单元格中,有没有办法使等式中的字体大小变大?

c = $\frac{a}{b}$

我试过了c = \large{$\frac{a}{b}$},但没用。

美元符号开始和结束 LaTex 边界,所以你需要在里面使用标签。

c = $\Large\frac{a}{b}$