Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. documentclass{minimal}
  2. usepackage{tikz}
  3.  
  4. begin{document}
  5. begin{tikzpicture}
  6. node[draw, circle, radius=1] (q0) at (0,0) {};
  7. node[draw, circle, radius=1] (q1) at (2,0) {};
  8. draw (q0) edge[to path={.. controls (1,1) .. (tikztotarget)}, ->] node[above] {x} (q1)
  9. edge[->, bend right=15] node[below] {y} (q1);
  10. end{tikzpicture}
  11. end{document}
Add Comment
Please, Sign In to add comment