不同比例的轴,但物理尺寸相同

不同比例的轴,但物理尺寸相同

我有以下 PSTricks 代码:

\documentclass[pstricks,preview,margin=0pt]{standalone}
\usepackage{pst-plot,graphicx}
\begin{document}
  \psset{linecolor=black,linewidth=1pt,arrowsize=8pt,unit=1bp}
  \begin{pspicture}(-176,-176)(176,176)
    % Axes
    \psset{linewidth=2pt}
    \psaxes[Dx=32,Dy=32,labels=all,ticks=all,ticksize=-4pt 4pt,Ox=-128,Oy=-128]{-}(-128,-128)(-128,-128)(128,128)
    \uput{0pt}[0](0,-160){{\large\itshape{a}}}
    \uput{0pt}[0](-160,0){{\large\itshape{b}}}
  \end{pspicture}
\end{document}

但是,我想将 y 轴的单位改为 0 到 100 之间的范围,但同时保持与当前相同的物理尺寸和位置。我该如何实现?谢谢。

答案1

\documentclass[pstricks,preview,margin=0pt]{standalone}
\usepackage{pst-plot,graphicx}
\begin{document}
    \psset{linecolor=black,linewidth=1pt,arrowsize=8pt,unit=1bp}
    \begin{pspicture}(-176,-176)(176,176)
    % Axes
    \psset{linewidth=2pt}
    \psaxes[Dx=25,dx=64,Dy=32,Oy=-128](-128,-128)(-128,-128)(128,128)
    \uput{0pt}[0](0,-160){{\large\itshape{a}}}
    \uput{0pt}[0](-160,0){{\large\itshape{b}}}
    \end{pspicture}
\end{document}

相关内容