ggplot 无法在构面标题中将数字以斜体显示
我试图将我的一些方面设置为斜体文本,此时我注意到我的数字没有变成斜体。我注意到轴标签中有相同的行为。重要的是,只有标签的部分部分或只有某些方面应该是斜体。
有什么办法可以规避/解决这个问题吗?
MWE:
library(ggplot2)
library(tibble)
tibble(
a = c('a1~italic(a1)', 'Not~Italic'),
x = c(1,1),
y = c(1,1)
) %>%
ggplot(aes(x,y)) +
geom_point() +
facet_grid(a~., labeller = label_parsed) +
theme(
strip.text = element_text(size = 20)
) +
xlab(expression(italic(Italic~part~of~label1)~not~italic~part~of~label1))
由 reprex 包 (v2.0.0)
I am trying to have some of my facets in italic text, at which point I noticed that my numbers do not become italic. I noticed the same behaviour in axis labels. Importantly, only partial parts of the labels or only some facets should be italic.
Is there any way to circumvent/fix this?
MWE:
library(ggplot2)
library(tibble)
tibble(
a = c('a1~italic(a1)', 'Not~Italic'),
x = c(1,1),
y = c(1,1)
) %>%
ggplot(aes(x,y)) +
geom_point() +
facet_grid(a~., labeller = label_parsed) +
theme(
strip.text = element_text(size = 20)
) +
xlab(expression(italic(Italic~part~of~label1)~not~italic~part~of~label1))
Created on 2022-03-02 by the reprex package (v2.0.0)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
澄清后更新:
第一个答案:
以下是我们如何使用
element_text()
来实现:Update after clarification:
First answer:
Here is how we could do it using
element_text()
: