在基础R图中使用多行文本时,我无法在其符号旁边保留上标。请考虑以下示例:
plot(c(0,1), c(0,1), axes=F, xlab="", ylab="", type='n')
x1 <- expression(paste("(1) here is some text s" ^-1))
text(0.5, 0.25, x1)
x2 <- expression(paste("(2) here is some text\n s" ^-1))
text(0.5, 0.5, x2)
案例“1”很好,但是在“2”的情况下添加了很多空格