Guest User

Untitled

a guest
Sep 26th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{shadows, positioning}
  4. begin{document}
  5. begin{tikzpicture}[node distance=5mm, auto, font=sffamily,
  6. blockcolors/.style={
  7. % The rest
  8. thick,draw=black,
  9. top color=white,
  10. bottom color=black!10,
  11. font=sffamilysmall
  12. },
  13. blockheight/.style = {
  14. minimum height=10mm
  15. },
  16. block/.style={
  17. % The shape:
  18. rectangle, minimum size=6mm, minimum width=12mm,
  19. blockheight,
  20. node distance=5mm,
  21. blockcolors,
  22. drop shadow
  23. }
  24. ]
  25. node (int1) [block, label=below:too small]{$int dt$};
  26. node (int2) [block, right=of int1, label=below:too big]{$displaystyleint dt$};
  27. node (int3) [block, right=of int2, label=below:just right]{???};
  28. end{tikzpicture}
  29. end{document}
Advertisement
Add Comment
Please, Sign In to add comment