Guest User

Untitled

a guest
Nov 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. begin{document}
  4.  
  5. section*{Without Scaling}
  6. begin{tikzpicture}
  7. node at (0, 0) [rectangle,draw,minimum size=5cm] {A};
  8. draw (-2.5, 1) -- (2.5, 1) node[midway,below] {B};
  9. end{tikzpicture}
  10.  
  11. section*{With Scaling}
  12. begin{tikzpicture}[scale=0.5]
  13. node at (0, 0) [rectangle,draw,minimum size=5cm] {A};
  14. draw (-2.5, 1) -- (2.5, 1) node[midway,below] {B};
  15. end{tikzpicture}
  16.  
  17. end{document}
Add Comment
Please, Sign In to add comment