如何更改Rpres中数学公式的字体大小? [编者注:“Rpres”是RStudio用于其“演示文稿”文件的文件扩展名。它显然已被用户用作IDE的该部分的简写。] Code box size and font size in RPres面临着类似的问题,但是它不能解决数学公式的问题,因为数学公式不是与文本分离的代码块的一部分,但是是LaTeX代码的一部分。
例如,请考虑使用默认设置制作的幻灯片的以下部分:
The average height is 175cm, with a standard deviation of 10.
The z-score for a student 163cm is given by the formula:
$$z = (x - \mu)/\sigma$$
where $x$ is the student of our interest, $\mu$ is the distribution mean of
the school and $\sigma$.
返回值:
当然,Code box size and font size in RPres中建议的方法不会影响数学公式的大小。
最佳答案
RPres文档和Rmarkdown文档中的数学公式是Rmarkdown文档中嵌入的LateX代码块。
因此,可以使用从\tiny
到\HUGE
的参数来修改数学公式(或更一般而言,LaTeX文本)的字体大小:
$$\Huge textblog.org$$
将影响字体的大小,具体取决于:
关于r - 在RPres中更改数学公式的字体大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36531820/