Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. documentclass[11pt]{scrartcl}
  2.  
  3. usepackage{tikz}
  4. usetikzlibrary{positioning,shapes,calc}
  5. usepackage{pgf-umlsd}
  6.  
  7. begin{document}
  8.  
  9. begin{figure}
  10.  
  11.  
  12. begin{tikzpicture}[every node/.style=draw,scale=1.25]
  13.  
  14. tikzset{part/.style={fill=gray!20,minimum width=1em,minimum height=1.4em,align=left}}
  15. draw[fill=gray,minimum width=10em,minimum height=6em,align=left,anchor=south west] (0,0) rectangle (8,4) coordinate[pos=.5](O);
  16.  
  17. node [above=.5em,part,xshift=1em] (part1) at (O){Part I};
  18. node[on grid,part,below=2em of part1] (part2){Part II};
  19. node[on grid,part,below=2em of part2] (part2){Part III};
  20. end{tikzpicture}
  21.  
  22. end{figure}
  23.  
  24.  
  25. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement