我正在使用{glue}
包来编写表达式,然后我将其解析并显示在 ggplot2 注释中。
但是,如果我有一个多行表达式,它们不会垂直对齐。我怎样才能实现这样的对齐?我以为atop + displaystyle
会这样做,但事实并非如此。
library(ggplot2)
library(glue)
b.text <- "bottom part of the expression"
t.text <- "top part of the expression"
ggplot() +
labs(subtitle = parse(text = glue("list(atop('{t.text}', '{b.text}'))")))