tkz-euclide: Wie ändere ich die Pfeile von \tkzShowPointCoord?

tkz-euclide: Wie ändere ich die Pfeile von \tkzShowPointCoord?

Mir gefallen die Standardpfeilspitzen von nicht \tkzShowPointCoord. Wie kann ich sie ändern?

Bildschirmfoto

Bildbeschreibung hier eingeben

MWE

\begin{tikzpicture}[scale=1]
\tkzInit[xmax=5,ymax=5]
\tkzDefPoints{0/0/O,1/0/I,0/1/J}
\tkzDrawXY[noticks,>=latex]
\tkzDefPoint(3,4){A}
\tkzDrawPoints(O,A)
\tkzLabelPoint(A){$A_1 (x_1,y_1)$}
\tkzShowPointCoord[xlabel=$x_1$,
ylabel=$y_1$](A)
\tkzLabelPoints(O,I)
\tkzLabelPoints[left](J)
\tkzDrawPoints[shape=cross](I,J)
\end{tikzpicture}

Antwort1

Sie haben die Antwort sozusagen schon in Ihrem Code: >={insert arrow tip specification}. Sie können das in den Optionen verwenden, um \tkzShowPointCoord.

Wenn Sie außerdem hinzufügen, \usetikzlibrary{arrows.meta}haben Sie Zugriff auf viele verschiedene Pfeilspitzen, die ebenfalls anpassbar sind. Daher könnten Sie so etwas tun wie

\tkzShowPointCoord[xlabel=$x_1$,ylabel=$y_1$,>={Kite[red,width=1cm,length=2cm]}](A)

für einige eher unscheinbare Pfeilspitzen:

Bildbeschreibung hier eingeben

\documentclass{article}
\usepackage{tkz-euclide}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}[scale=1]
\tkzInit[xmax=5,ymax=5]
\tkzDefPoints{0/0/O,1/0/I,0/1/J}
\tkzDrawXY[noticks]
\tkzDefPoint(3,4){A}
\tkzDrawPoints(O,A)
\tkzLabelPoint(A){$A_1 (x_1,y_1)$}
\tkzShowPointCoord[xlabel=$x_1$,ylabel=$y_1$,>={Kite[red,width=1cm,length=2cm]}](A)
\tkzLabelPoints(O,I)
\tkzLabelPoints[left](J)
\tkzDrawPoints[shape=cross](I,J)
\end{tikzpicture}
\end{document}

verwandte Informationen