Guest User

Untitled

a guest
Dec 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. draw (v0) -- (v1)
  2. (v1) -- (v2)
  3. (v2) -- (v3)
  4. (v3) --(v4)
  5. (v4) --(v5)
  6. (v5) --(v6)
  7. (v6) --(v0)
  8. (v7) -- (v8)
  9. (v8) -- (v9)
  10. (v9) -- (v10)
  11. (v10) --(v11)
  12. (v11) --(v12)
  13. (v12) --(v13)
  14. (v13) --(v7)
  15. (v0) --(v7)
  16. (v1) --(v8)
  17. (v2) --(v9)
  18. (v3) --(v10)
  19. (v4) --(v11)
  20. (v5) --(v12)
  21. (v6) --(v13);
  22.  
  23. end{tikzpicture}
  24.  
  25. documentclass{beamer}
  26.  
  27. %usepackage[hmargin=1.15in,vmargin=1.115in]{geometry}
  28. usepackage{verbatim}
  29. usepackage{
  30. %graphicx,
  31. caption,subcaption}
  32. newcommand{noi}{noindent}
  33.  
  34. usepackage{tikz}
  35. %usepackage{xcolor}
  36. usetikzlibrary{intersections,arrows.meta,automata,er,calc,backgrounds,mindmap,folding,patterns,decorations.markings,fit,
  37. %snakes,
  38. shapes,matrix,positioning,shapes.geometric,through,arrows,decorations}
  39.  
  40. newcommand{vertex}{node[vertex]}
  41. newcounter{Angle}
  42.  
  43. setbeamersize{text margin left=1.15in,text margin right=1.15in}
  44.  
  45. begin{document}
  46.  
  47. begin{frame}
  48. begin{tikzpicture}[scale=0.55]
  49. tikzstyle{every node}=[draw,shape=circle];
  50. node (v0) at (0:3) {$V_0$};
  51. node (v1) at (72:3) {$V_1$};
  52. node (v2) at (2*72:3) {$V_2$};
  53. node (v3) at (3*72:3) {$V_3$};
  54. node (v4) at (4*72:3) {$V_4$};
  55. node (v5) at (5*72:3) {phantom{$V_5$}};
  56. node (v6) at (6*72:3) {phantom{$V_6$}};
  57. node (v7) at (0:6) {$V_7$};
  58. node (v8) at (72:6) {$V_8$};
  59. node (v9) at (2*72:6) {$V_9$};
  60. node (v10) at (3*72:6) {$V_{10}$};
  61. node (v11) at (4*72:6) {$V_{11}$};
  62. node (v12) at (5*72:6) {phantom{$V_{1}$}};
  63. node (v13) at (6*72:6) {phantom{$V_{1}$}};
  64.  
  65. draw (v0) -- (v1)
  66. (v1) -- (v2)
  67. (v2) -- (v3)
  68. (v3) --(v4)
  69. (v4) --(v5)
  70. (v5) --(v6)
  71. (v6) --(v0)
  72. (v7) -- (v8)
  73. (v8) -- (v9)
  74. (v9) -- (v10)
  75. (v10) --(v11)
  76. (v11) --(v12)
  77. (v12) --(v13)
  78. (v13) --(v7)
  79. (v0) --(v7)
  80. (v1) --(v8)
  81. (v2) --(v9)
  82. (v3) --(v10)
  83. (v4) --(v11)
  84. (v5) --(v12)
  85. (v6) --(v13);
  86.  
  87. end{tikzpicture}
  88.  
  89. end{frame}
  90.  
  91.  
  92.  
  93. end{document}
Add Comment
Please, Sign In to add comment