[Tex/LaTex] Inserting the \markangle on tkz-euclide 1.16c

tikz-pgftkz-collection

How do i insert \markangle in tkz-euclid 1.16c?

\documentclass{article}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}
\usepackage{tkz-euclide}
\usetkzobj{all}

\begin{document}

\begin{tikzpicture}[>=latex]
  \tkzInit
  \tkzDefPoint(2,2){A}
  \tkzDefPoint(0,0){B}
  \tkzDefPoint(5,0){C}
  %angulos
  \tkzMarkAngle[fill=green!50,size=7mm](A,C,B)
  \tkzLabelPoints[right](C)
  \tkzDrawSegments(B,C C,A)
  \draw ($(C)+(165:.5)$) -- ($(C)+(165:.9)$);
  \draw[red,<-] ($(C)+(165:.9)$) to[out=180,in=0] +(-1,.5) node[left] {mark};
\end{tikzpicture}

\end{document}

enter image description here

Best Answer

Are you just trying to label the angle? If so just use label={} to specify what you want.

enter image description here

\documentclass{article}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}
\usepackage{tkz-euclide}
\usetkzobj{all}

\begin{document}

\begin{tikzpicture}[>=latex]
  \tkzInit
  \tkzDefPoint(2,2){A}
  \tkzDefPoint(0,0){B}
  \tkzDefPoint(5,0){C}
  %angulos
  \tkzMarkAngle[fill=green!50,size=7mm,label={$35^\circ$}](A,C,B)
  \tkzLabelPoints[right](C)
  \tkzDrawSegments(B,C C,A)
  \draw ($(C)+(165:.5)$) -- ($(C)+(165:.9)$);
  %\draw[red,<-] ($(C)+(165:.9)$) to[out=180,in=0] +(-1,.5) node[left] {mark};
\end{tikzpicture}
\end{document}