Guest User

Untitled

a guest
May 27th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{shapes.geometric}
  4.  
  5. begin{document}
  6. begin{tikzpicture}
  7. draw[style=help lines] (0, 0) grid (5, 5);
  8. node (a) [rectangle, draw, fill=red!20] at (1, 1) {Rectangle A};
  9. node (b) [rectangle, draw, fill=green!20] at (4, 4) {Rectangle B};
  10. node (c) [rectangle, draw, fill=blue!20] at (4, 1) {Rectangle C};
  11. end{tikzpicture}
  12. end{document}
Add Comment
Please, Sign In to add comment