angle librarylibrary Code funktioniert nicht
Wieso funktioniert der folgende Code nicht?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{angles,quotes,intersections}
\tikzset{
angle radius=0.75cm
}
\begin{document}
\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}