I am trying to scale the font in a tikz picture using the scalefnt (compare this question) package. However for tkz obejects it doesn't work, for example:
\documentclass{minimal}
\usepackage{scalefnt}
\usepackage{tkz-euclide}
\begin{document}
{\scalefont{2}
\begin{tikzpicture}
\path (2,0) node{works};
\tkzDefPoint(0,0){A}
\tkzDrawPoint(A)
\tkzLabelPoint(A){test}
\end{tikzpicture}
}
\end{document}
Any ideas how to fix this?