cetz-plot
cetz-plot copied to clipboard
Default axis labels x and y are upright
The default axis labels x and y are displayed in an upright style in Typst 0.13.0 and later. In the example code below, CeTZ 0.3.2 is used to ensure compatibility with Typst 0.12.0, but the same issue occurs with CeTZ 0.3.4.
#import "@preview/cetz:0.3.2": *
#import "@preview/cetz-plot:0.1.1": *
#canvas(
plot.plot(
x-tick-step: none,
y-tick-step: none,
plot.add(((0, 0),))
)
)
0.12.0
0.13.1