提问人:JR96 提问时间:6/22/2023 最后编辑:stefanJR96 更新时间:6/22/2023 访问量:34
ggplot2 标签中下标为“x”的数学 frak B
Mathematical frak 𝔅 with subscript 'x' in ggplot2 label
问:
我想要带有下标“x”(普通 R 字体)的 B。它不需要使用 font_add_google 功能,任何解决方案都是值得赞赏的。谢谢! 如果这可能有帮助,则 unicode 为 U1D505。
font_add_google(name = 'UnifrakturMaguntia','fraktur')
showtext_auto()
df <- data.frame()
ggplot(df) +
geom_point() +
xlim(0, 10) +
ylim(0, 100) +
ylab(bquote(B[x])) +
theme(axis.title.y = element_text(family = "fraktur", size = 20),
title = element_text(family="sans"))
showtext_auto(FALSE)
我尝试了我上面写的。
答: 暂无答案
评论
ylab(bquote("\U1D505"[x]))
Cairo
AGG