I am drawing finite automata with TikZ. Currently, transition arrows overlap between nodes because they both go across horizontally. How can I tell one arrow to arc above and the other arrow to arc under?
Here's what I have:
(q_0) edge node {H} (q_1)
(q_1) edge node {T} (q_0)
Best Answer
You can use
bend left
orbend right
in the options foredge
as per the need.An example