是否有可能得到带有度数符号的单独 x 阶斧?例如等等$50^\circ$, $100^\circ$
?
\documentclass{scrartcl}
\usepackage{pgf,tikz,tkz-fct,tkz-euclide}
\usetkzobj{all}
\begin{document}
\begin{tikzpicture}
\tkzInit[xmin=0,xmax=370,ymin=-1,ymax=1,xstep=60,ystep=0.5]
\tkzGrid[color = gray!50!white,sub,subxstep=15,subystep=0.1]
\tkzAxeX[right space=0.2, label=$\alpha$]
\tkzAxeY
\end{tikzpicture}
\end{document}
任何想法?
答案1
您需要自己做刻度。
\tkzDrawAxe
画出斧头,然后您可以添加不带符号的刻度,并且可以将符号放在带有标签的斧头末端。另一种可能性是重写命令,\tkzLabelX
但这个宏很长。也许在这种情况下您可以编写自己的宏。我认为这也许是最好的解决方案。