center-line.tex 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. \documentclass{article}
  2. \usepackage[pdftex,active,tightpage]{preview}
  3. \setlength\PreviewBorder{2mm}
  4. \usepackage{tikz}
  5. \usepackage{tkz-fct}
  6. \usetikzlibrary{shapes.misc}
  7. \usetikzlibrary{shapes, calc, decorations}
  8. \usepackage{amsmath,amssymb}
  9. \begin{document}
  10. \begin{preview}
  11. \begin{tikzpicture}[cross/.style={ thick,
  12. draw=gray,
  13. cross out,
  14. inner sep=0pt,
  15. minimum width=4pt,
  16. minimum height=4pt},
  17. dot/.style={ thick,
  18. draw=gray,
  19. circle,
  20. fill=black,
  21. inner sep=0pt,
  22. minimum width=4pt,
  23. minimum height=4pt}]
  24. \node at (0,3) {Schritt 1:};
  25. \foreach \point in {(2,3),(4,3),(6,3),(8,3),(10,3),(12,3)}{
  26. \node[cross] at \point {};
  27. }
  28. \foreach \point in {(3,3),(11,3)}{
  29. \node[dot] at \point {};
  30. }
  31. \draw[->] (2,3) edge[bend left] (2.9,3);
  32. \draw[->] (12,3) edge[bend right] (11.1,3);
  33. %%%%%%%%%%%%%%%%%%%%%%%%
  34. \node at (0,2) {Schritt 2:};
  35. \foreach \point in {(3,2),(4,2),(6,2),(8,2),(10,2),(11,2)}{
  36. \node[cross] at \point {};
  37. }
  38. \foreach \point in {(3.5,2),(4.33,2),(9.66,2),(10.5,2)}{
  39. \node[dot] at \point {};
  40. }
  41. \draw[->] (3,2) edge[bend left] (3.4,2);
  42. \draw[->] (4,2) edge[bend left] (4.2,2);
  43. \draw[->] (11,2) edge[bend right] (10.6,2);
  44. \draw[->] (10,2) edge[bend right] (9.73,2);
  45. %%%%%%%%%%%%%%%%%%%%%%%%
  46. \node at (0,1) {Schritt 3:};
  47. \node[cross] at (7,1) {};
  48. \node at (0,1.6) {$\vdots$};
  49. \node at (0,2.6) {$\vdots$};
  50. % Brace
  51. \draw [decorate,decoration={brace,amplitude=6pt},yshift=3pt]
  52. (2,3) -- (4,3) node [black,midway,yshift=12pt]
  53. {\footnotesize 200m};
  54. \draw [decorate,decoration={brace,amplitude=6pt},yshift=3pt]
  55. (4,3) -- (6,3) node [black,midway,yshift=12pt]
  56. {\footnotesize 200m};
  57. \draw [decorate,decoration={brace,amplitude=6pt},yshift=3pt]
  58. (6,3) -- (8,3) node [black,midway,yshift=12pt]
  59. {\footnotesize 200m};
  60. \draw [decorate,decoration={brace,amplitude=6pt},yshift=3pt]
  61. (8,3) -- (10,3) node [black,midway,yshift=12pt]
  62. {\footnotesize 200m};
  63. \draw [decorate,decoration={brace,amplitude=6pt},yshift=3pt]
  64. (10,3) -- (12,3) node [black,midway,yshift=12pt]
  65. {\footnotesize 200m};
  66. \end{tikzpicture}
  67. \end{preview}
  68. \end{document}