tkz-euclide: ¿Cómo modificar las flechas de \tkzShowPointCoord?

tkz-euclide: ¿Cómo modificar las flechas de \tkzShowPointCoord?

No me gustan las puntas de flecha predeterminadas de \tkzShowPointCoord. ¿Cómo puedo cambiarlos?

Captura de pantalla

ingrese la descripción de la imagen aquí

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}

Respuesta1

Ya tienes la respuesta en tu código: >={insert arrow tip specification}. Puedes usarlo en las opciones para \tkzShowPointCoord.

Si también agrega, \usetikzlibrary{arrows.meta}tendrá acceso a muchas puntas de flecha diferentes, que también son personalizables. Por lo tanto, podrías hacer algo como

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

para algunas puntas de flecha bastante discretas:

ingrese la descripción de la imagen aquí

\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}

información relacionada