Guest User

Untitled

a guest
Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. documentclass[border=10pt]{standalone}
  2. usepackage{verbatim}
  3. usepackage{tikz}
  4. begin{document}
  5. begin{tikzpicture}[sibling distance=10em,
  6. every node/.style = {shape=rectangle, rounded corners,
  7. draw, align=center,
  8. top color=white, bottom color=blue!20}]]
  9. node {Calculus}
  10. child { node {Limit}
  11. child { node {Differential}
  12. child { node {Tangent line\ to a curve} } }}
  13. child { node {Limit}
  14. child { node {Integral}
  15. child { node {Area under\ a curve} } } } ;
  16. end{tikzpicture}
  17. end{document}
  18.  
  19. documentclass[tikz, border=10pt]{standalone}
  20. usetikzlibrary{arrows.meta,
  21. matrix}
  22.  
  23. begin{document}
  24. begin{tikzpicture}[
  25. > = Stealth,
  26. base/.style = {shape=rectangle, draw,
  27. text width=11ex, align=center, inner xsep=0.5ex,
  28. top color=white, bottom color=blue!20},
  29. RB/.style = {base, rounded corners, font=sffamily},
  30. SB/.style = {base, font=itshapebfseries},
  31. ]
  32. matrix (m) [matrix of nodes,
  33. nodes in empty cells,
  34. column sep=-6mm, row sep=3mm
  35. ]
  36. {
  37. & & |[RB]| Calculus
  38. & & \
  39. & |[RB]| {Limit}
  40. & & |[RB]| Limit
  41. & \
  42. |[RB]| Differential
  43. & & |[SB]| FFT
  44. & & |[RB]| Integral \
  45. |[SB,text width=15ex]| Tangent line to a curve
  46. & & & & |[SB,text width=15ex]| Area under a curve \
  47. includegraphics[width=15ex]{example-image-a}
  48. & & & & includegraphics[width=15ex]{example-image-b} \
  49. };
  50. draw[<->] (m-1-3) -- (m-2-2);
  51. draw[<->] (m-1-3) -- (m-2-4);
  52. %
  53. draw[ ->] (m-2-2) -- (m-3-1);
  54. draw[ ->] (m-2-4) -- (m-3-5);
  55. %
  56. draw[ ->] (m-3-1) -- (m-4-1);
  57. draw[ ->] (m-3-5) -- (m-4-5);
  58. %
  59. draw[ ->] (m-3-3) -- (m-3-1);
  60. draw[ ->] (m-3-3) -- (m-3-5);
  61. end{tikzpicture}
  62. end{document}
Add Comment
Please, Sign In to add comment