I'm looking for help using the tkzMarkAngle in the following code, I have tried to follow the help from here,How do I mark an angle with multiple arcs? but it does not render.
\documentclass{book}
\usepackage{blindtext}
\usepackage{tikz}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(2,1){B}
\tkzDefPoint(2.8,3){C}
\tkzDefPoint(5,2.5){D}
\tkzDefPoint(5,-2.5){E}
\tkzDefPoint(4,-3){F}
\tkzDefPoint(2,-1){G}
\tkzDefPoint(3.1,1.5){P}
\tkzDefPoint(3.8,-1.9){Q}
\tkzDrawSegmentthick
\tkzDrawSegmentthick
\tkzDrawSegmentthick
\tkzDrawSegmentdashed, thick
\tkzDrawSegmentdashed, thick
\tkzLabelPointleft{$A$}
\tkzLabelPointabove{$B$}
\tkzLabelPointabove{$C$}
\tkzLabelPointright{$D$}
\tkzLabelPointright{$E$}
\tkzLabelPointbelow{$F$}
\tkzLabelPointbelow{$G$}
\tkzLabelPointabove{$P$}
\tkzLabelPointbelow{$Q$}
\tkzDrawPoints(A,B,C,D,E,F,G,P,Q)
%\tkzMarkAnglearc=1,type=|,size=2 cm
%\tkzMarkAnglearc=11,size=2 cm
\end{tikzpicture}
\end{document}
I have hidden the two lines of code that make the code not work just so people can see the output before I try to mark the angles
