Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 x 标签为:Latitudinal extent(0),括号上标内的零(即度数符号)。我找不到这样做的方法。
Latitudinal extent(0)
目前,这有效:
xlab(expression(Latitudinal~extent~(.^0~.)))
但随后我需要使用 Paint(或类似的东西)擦除多余的点。
如果你想要度数符号,为什么不使用度数符号?
plot(1, xlab = expression("Latitudinal extent"~(degree)))
上标零是可能的,但看起来不太好:
plot(1, xlab = expression("Latitudinal extent"~({}^0)))
你可能想学习help("plotmath")。
help("plotmath")