Skip to main content Another week, another Gribouille release. Gribouille 0.3.0 is narrower in scope than 0.2 , but it brings some wanted controls. The headline is guide control: a single argument now hides axis ticks and legends without touching the theme. Alongside that, compose() gains a theme: parameter, defer() replaces plot(..., defer: true) , geom-area() stacks by default, and annotate() can let marks overflow the panel. Gribouille 0.3.0 on Typst Universe: #import "@preview/gribouille:0.3.0": * . guides(x: none) / guides(y: none) hide tick marks and tick labels; the axis line, grid, and title stay. Remove the title separately with labs(x: none) . guides(default: none) hides every legend without its own override. Under coord-radial , guides(theta: none) hides the full angular axis and guides(r: none) hides radial tick labels. guides(none) replaces the removed guide-none() ; guides(auto) restores the default.…