Como posso colocar um rótulo de ponto exatamente no topo de um nó usando tkz-euclide
? Eu sei que isso pode ser feito tikz
usando algo como \node (A) at (1,1) {A};
.
Existe algum equivalente usando tkz-euclide
, como por exemplo \tkzLabelPoint[center](1,1){A}
,?
As \tkzLabelPoint
opções incluem above, below, above left, below right
, etc, mas se eu deixar a opção de posição em branco, o padrão será below right
. Posso fazer algo parecido \tkzLabelPoint[above, yshift=-12](1,1){A}
, mas parece uma solução alternativa insatisfatória.
Responder1
Você pode usar anchor=center
( \tkzLabelPoint
é apenas um nó com estilo predefinido).
\documentclass[border=5pt]{standalone}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
%\draw[gray](0,0)grid(2,2);
\tkzInit[xmin=0,ymin=0,xmax=2,ymax=2]
\tkzGrid[gray]
\tkzDefPoint(1,1){A}
\tkzLabelPoint[red,anchor=center](A){$A$}
\end{tikzpicture}
\end{document}