将 PSTricks 轴标签翻转过来吗?

将 PSTricks 轴标签翻转过来吗?

在 PSTricks 中,有没有办法将轴标签翻转过来?或者通过其他方式实现相同的效果?谢谢。

[编辑]

这是我目前的文档。我只需要将数字倒过来。它将成为 3D 场景的一部分,我将从相反的方向查看轴。

[编辑]

\documentclass{article}

\usepackage{nopageno,pst-node,pst-plot}

\begin{document}

\psset{linecolor=black,linewidth=1pt,arrowsize=8pt,unit=1px}
\begin{pspicture}(-15,-15)(150,15)

  % Axes
  \psaxes[Dx=32,Dy=32,labels=none]{-}(-128,-128)(-128,-128)(128,128)
  \psset{linewidth=2pt}
  \psaxes[Dx=32,Dy=32,labels=all,ticksize=8pt,tickstyle=bottom,Ox=-128,Oy=-128]{-}(-128,-128)(-128,-128)(128,128)
  \uput{10pt}[70](-160,0){\psscalebox{1.25}{\itshape a}}
  \uput{10pt}[0](0,-160){\psscalebox{1.25}{\itshape b}}

\end{pspicture}

\end{document}

在此处输入图片描述

答案1

像这样吗?

\documentclass{article}
\usepackage{pst-plot,graphicx}
\def\pshlabel#1{\rotatebox{90}{#1}}
\def\psvlabel#1{\rotatebox{90}{#1}}
\begin{document}

\psset{linewidth=1pt,arrowsize=8pt,unit=1pt}
\begin{pspicture}(-150,-150)(150,150)
    \psset{linewidth=2pt}
    \psaxes[Dx=32,Dy=32,ticksize=-4pt 8pt,Ox=-128,Oy=-128]%
      (-128,-128)(-128,-128)(128,128)
    \uput{10pt}[70](-160,0){\large\itshape a}
    \uput{10pt}[0](0,-160){\large\itshape b}
\end{pspicture}

\end{document}

在此处输入图片描述

相关内容