我正在使用 ggplot2 中的主题为 R 中的绘图添加美学。我想让 x 轴文本既粗体又斜体。
我知道我可以使用:
theme(axis.text.x = element_text(face ="bold"))
使轴文本加粗并:
theme(axis.text.x = element_text(face ="italic"))
使其成为斜体。
但是我如何使它既粗体又斜体?
这些都不能胜任
theme(axis.text.x = element_text(face ="italic", "bold"))
theme(axis.text.x = element_text(face =c("bold", "italic")))
theme(axis.text.x = element_text(face = "bold", face = "italic"))
theme(axis.text.x = element_text(face = "bold" & "italic"))
任何帮助表示赞赏。
最佳答案
?element_text
说以下是选项(你试过 face ="bold.italic"
吗?):
关于r - element_text 中 "face"的多个参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39873450/