将 pstricks 中的负 y 轴标签更改为右侧

将 pstricks 中的负 y 轴标签更改为右侧

我无法将负 y 轴标签更改为 y 轴的右侧。这是我需要的:

在此处输入图片描述

这是我目前用 XeLaTex 编译的内容:

\documentclass{article}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture*}(-3,-3)(3,3)
    %\psgrid[gridcolor=orange!20,subgridcolor=orange!10]
    \psaxes{->}(0,0)(-2.5,-2.5)(2.5,2.5)[$x$,0] [$y$,90]
    \psline(-1,-1)(0,-1)
    \psline(0,1)(1,1)
    \psdots[dotstyle=Bo](-1,-1)
    \psdots(0,1)
\end{pspicture*}
\end{document}

在此处输入图片描述

另外我需要从原点消除一个零,以便只剩下一个。谢谢

答案1

\documentclass{article}
\usepackage{pst-plot}
\begin{document}
    \begin{pspicture*}(-3,-3)(3,3)
        %\psgrid[gridcolor=orange!20,subgridcolor=orange!10]
        \psaxes[showorigin=false]{->}(0,0)(-2.5,0)(2.5,2.5)[$x$,0] [$y$,90]
        \psaxes[xAxis=false,ylabelPos=right,showorigin=false](0,0)(-2.5,-2.5)(2.5,0)
        \rput[t](-0.15,\dimexpr-\pslabelsep-2pt){\pshlabel{0\strut}}%
        \psline(-1,-1)(0,-1)
        \psline(0,1)(1,1)
        \psdots[dotstyle=Bo](-1,-1)
        \psdots(0,1)
    \end{pspicture*}
\end{document}

在此处输入图片描述

相关内容