Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{positioning}
  4. begin{document}
  5. begin{tikzpicture}
  6. path node(n1){node 1};
  7. path node[below=0pt of n1](n2){node 2};
  8. % following doesn't work
  9. path node[below=10pt of (5pt,5pt)](n3){node 3};
  10. end{tikzpicture}
  11. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement