使用TeX()在R中的轴文本中加粗文本

时间:2018-11-20 21:23:02

标签: r fonts latex tex

如何使用TeX在R中以粗体显示文本?

TeX("$\\alpha$")
TeX("The ratio of 1 and 2 is $\\frac{1}{2}$")

a <- 1:100
plot(a, a^2, xlab=TeX("$\\alpha$ bold text"), ylab=TeX("$\\alpha^2$ bold text"))

我尝试了TeX("$\\alpha$ \textbf{bold text}")TeX("$\\alpha$ $\textbf{bold text}$"),但没有成功

1 个答案:

答案 0 :(得分:1)

library(latex2exp)

TeX("$\\alpha$")
TeX("The ratio of 1 and 2 is $\\frac{1}{2}$")

a <- 1:100
plot(a, a^2, xlab=TeX("$\\alpha$ \\textbf{bold text}"), ylab=TeX("$\\alpha^2$ \\textbf{bold text}"))

您需要在命令前面使用双斜杠,然后才能得到结果:

https://laravel.com/docs/5.7/helpers#method-public-path