更改$xy$图上的轴变量

更改$xy$图上的轴变量

我要做的就是更改此轴上的变量。我不需要添加任何标签,只需将 $x$ 和 $y$ 更改为 $M$ 和 $N$ 即可。

\usepackage{tkz-euclide}
\usepackage{pgfplots,wrapfig}

\begin{document}
\begin{wrapfigure}{l}{0pt}
     \begin{tikzpicture}
          \tkzInit[xmax=6,ymax=6,xmin=-1,ymin=-3]
          \tkzGrid
          \tkzAxeXY
     \end{tikzpicture}
\end{wrapfigure}
\end{document}

有人有快速解决方法吗?提前致谢。

输出

答案1

这能起到作用吗?

\documentclass{article}

\usepackage{tkz-euclide}
\usepackage{pgfplots,wrapfig}

\begin{document}
\begin{wrapfigure}{l}{0pt}
     \begin{tikzpicture}
          \tkzInit[xmax=6,ymax=6,xmin=-1,ymin=-3]
          \tkzGrid
          \tkzAxeX[label=$M$]
          \tkzAxeY[label=$N$]
     \end{tikzpicture}
\end{wrapfigure}
\end{document}

在此处输入图片描述

相关内容