| Ich verzweifel noch an dieser  Open in Online-Editor \documentclass{article} \usepackage{tikz} \usetikzlibrary{angles,quotes,intersections} \tikzset{ angle radius=0.75cm } \begin{document} \section*{Scheitelwinkel} \begin{tikzpicture} \draw[name path=A] (0,0) coordinate (A) -- (5,0) coordinate (B); \draw[name path=B] (1,2) coordinate (C) -- (3,-1) coordinate (D); \path[name intersections={of=A and B,name=i}]; \draw pic["$\alpha$", draw=red, ->] {angle=D--i-1--B}; \draw pic["$\alpha'$", draw=blue, ->] {angle=C--i-1--A}; \end{tikzpicture} \section*{Stufenwinkel} \begin{tikzpicture} \draw[name path=A] (0,0) coordinate (A) -- (5,0) coordinate (B); \draw[name path=B] (3,2) coordinate (C) -- (1,-1) coordinate (D); \draw[name path=C] (0,1) coordinate (E) -- (5,1) coordinate (F); \path[name intersections={of=A and C,name=i}]; \path[name intersections={of=B and C,name=j}]; \draw pic["$\alpha$", draw=red, ->] {angle=B--i-1--C}; \draw pic["$\alpha'$", draw=blue, ->] {angle=C--j-1--E}; \end{tikzpicture} \end{document} Wieso schließt der Winkel im Stufenwinkelschaubild nicht? | 
| Du musst die richtigen Linien für den Schnittpunkt auswählen.  Im zweiten Bild haben  Open in Online-Editor \path[name intersections={of=A and C,name=i}]; Daher wird die Koordinate  Open in Online-Editor \path[name intersections={of=A and B,name=i}]; tut es wunderbar. Ich habe die Zeile unten noch mit einem Pfeil markiert. Open in Online-Editor \documentclass{article} \usepackage{tikz} \usetikzlibrary{angles,quotes,intersections} \tikzset{ angle radius=0.75cm } \begin{document} \section*{Scheitelwinkel} \begin{tikzpicture} \draw[name path=A] (0,0) coordinate (A) -- (5,0) coordinate (B); \draw[name path=B] (1,2) coordinate (C) -- (3,-1) coordinate (D); \path[name intersections={of=A and B,name=i}]; \draw pic["$\alpha$", draw=red, ->] {angle=D--i-1--B}; \draw pic["$\alpha'$", draw=blue, ->] {angle=C--i-1--A}; \end{tikzpicture} \section*{Stufenwinkel} \begin{tikzpicture} \draw[name path=A] (0,0) coordinate (A) -- (5,0) coordinate (B); \draw[name path=B] (3,2) coordinate (C) -- (1,-1) coordinate (D); \draw[name path=C] (0,1) coordinate (E) -- (5,1) coordinate (F); \path[name intersections={of=A and B,name=i}]; % <-- \path[name intersections={of=B and C,name=j}]; \draw pic["$\alpha$", draw=red, ->] {angle=B--i-1--C}; \draw pic["$\alpha'$", draw=blue, ->] {angle=C--j-1--E}; \end{tikzpicture} \end{document} 
 | 
 
			
 
  
Bitte immer nur eine Frage auf einmal.