在 tkz-euclide 中使用 tkzAxeXY 绘制轴时,如何抑制数字和小符号?

在 tkz-euclide 中使用 tkzAxeXY 绘制轴时,如何抑制数字和小符号?

在 tkz-euclide 中使用 tkzAxeXY 绘制轴时,如何抑制数字和小符号?

\documentclass{article}
\usepackage{tkz-euclide}
\begin{tikzpicture}
\tkzInit[xmax=3,ymax=3]
\tkzAxeXY
\end{tikzpicture}
\end{document}

换句话说,不是上述文件的输出,而是以下输出:

在此处输入图片描述

答案1

使用\tkzDrawXY而不是\tkzAxeXY来抑制标签,使用\tkzSetUpAxis[ticka=0pt, tickb=0pt]来抑制刻度。

查看tkz-base手动的

\documentclass{article}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\tkzInit[xmax=3,ymax=3]
\tkzSetUpAxis[ticka=0pt, tickb=0pt]
\tkzDrawXY
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容