我执行了与此处发布的完全相同的代码:https://tex.stackexchange.com/a/334718/166582 但我的结果不同,我不知道为什么标签会重复。作为参考,代码是
\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}
我正在从 docker 容器运行 pdflatex texlive/texlive:latest
。所以它是最新的。这是一个错误,还是我在某个地方犯了错误?
答案1
我觉得我已经在这里看到过类似的东西了。这似乎是最新版本以来的一个错误tkz-euclide
,如果 Alain 过来,他应该能够给出一些解释。
纠正此问题的一种方法是执行以下操作:
\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={}]
\tkzDrawX[label=$M$]
\tkzAxeY[label={}]
\tkzDrawY[label=$N$]
\end{tikzpicture}
\end{wrapfigure}
\end{document}