pspicture 中 x 轴上的错误 .52

pspicture 中 x 轴上的错误 .52

我试图制作一个 x 轴上有自定义标签的 pspicture。不幸的是,我试图让 y 轴开始的值显示在 x 轴上方。有人知道为什么吗?

\documentclass[border=0bp]{standalone}
\usepackage{pst-plot}

\begin{document}
    \begin{pspicture}[](-1,-2)(1,1)
        \psaxes[xLabels={1}](0,0)(-1,-1.52)(1,1)
    \end{pspicture}
\end{document}

pspicture 显示错误的“.52”

答案1

xlabels={...}轴的长度不能为整数,例如

\psaxes[xLabels={1}](0,0)(-1,-1)(1,1)

然后,由 定义的标签xlabels将从左向右按 的步骤打印dx。这对两个轴均有效,与现有的 无关ylabels={}!使用您的

\psaxes[xLabels={1}](0,0)(-1,-1.52)(1,1)

仅将 -1 作为值和.52普通文本。

相关内容