0

有人可以建议我如何正确地在Gadfly情节中启动和结束上标吗?Julia或者如果有其他更好的解决方案而不是使用<sup></sup>,也请与我分享。非常感谢。

using Gadfly
ticks = [400, 1000, 1500, 2000, 2500, 3000, 3500, 4000]
Gadfly.plot(PET, x = :Wavenumber, y = :Transmittance, Geom.line, 
            Coord.cartesian(xflip=true, xmin=400, xmax=4000, ymax=100, ymin=0),
            Scale.x_continuous(maxticks=2000), 
            Guide.xticks(ticks=ticks),
            Guide.xlabel("Wavenumber (cm<sup>-1</sup>)"),
            Guide.ylabel("Transmittance (%)"))

在此处输入图像描述

4

1 回答 1

1
于 2021-10-08T19:00:37.790 回答