Don't know if this belongs here but just started to check out cetz and finite to draw state machines for university projects.
I like most of the default styling, however on my more detailed state machines i like to be able to position every transition. Here i have a simple automata created on the wonderful website https://madebyevan.com/fsm and as you see both the input state and the 0 transitions are positioned in specific ways.
here is my code for an approximation of the same state machine, it's mostly allright but i would like to position my 0 transitions, any ideas here from cetz/finite masters?
#cetz.canvas({
import cetz.draw: set-style
import finite.draw: state, transition
state((0,0), "q0", initial: (true))
state((5,0), "q1", final: true)
state((0,5), "q2")
transition("q1", "q0", label: 2, curve: 2)
transition("q0", "q1", label: 1, curve: 0)
transition("q0", "q2", label: 2, curve: 2)
transition("q2", "q0", label: 1, curve: 0)
transition("q2", "q1", label: 2, curve: 2)
transition("q1", "q2", label: 1, curve: 0)
transition("q0", "q0", label: 0, curve: 0)
transition("q1", "q1", label: 0, curve: 0)
transition("q2", "q2", label: 0, curve: 0)
})