使用atop()时完全左对齐

时间:2019-06-04 18:31:52

标签: r ggplot2 plotmath

使用atop()时如何完全左对齐文本?

library(tidyverse)

mtcars %>%
  mutate(cyl = str_c("atop(bold(", cyl, "~long~text~on~the~top),(shorttext))")) %>% 
  ggplot(aes(hp, wt)) +
  geom_line() +
  facet_wrap(~cyl, labeller = label_parsed) +
  theme(strip.text.x = element_text(hjust = 0))

1 个答案:

答案 0 :(得分:0)

现在我肯定会使用出色的 unload_extension 包来回答这个问题

ggtext

reprex package (v0.3.0) 于 2021 年 1 月 3 日创建