tkzelements环境中为什么不能用%添加注释
% !TEX TS-program = lualatex
% Author Alain Matthes 2023
\documentclass{article}
\usepackage{ctex}
\usepackage{amssymb,amsmath,amsthm,amsfonts,thmtools}
\usepackage{tkz-euclide}
\usepackage{tkz-elements}
\begin{document}
\section{极坐标}
\begin{tkzelements}
z.O= point:new(0, 0)
z.A= point:new(3, 0)
z.F= point:polar (3, math.pi/3)%极坐标
\end{tkzelements}
\begin{tikzpicture}
\tkzGetNodes
\tkzDrawCircle(O,A)
\tkzDrawSegments(O,A)
\tkzDrawSegments[purple](O,F)
\tkzDrawPoints(A,O,F)
\tkzLabelPoints[below right=6pt](A,O,F)
\end{tikzpicture}
\end{document}