pstricks \rput 文本位置

pstricks \rput 文本位置

我是 pstrick 的新手,想使用 uput 添加一些轴标签。我编译了以下示例

% !TeX program = latex

\documentclass[12pt,a4paper]{article}

\usepackage{pstricks}
\usepackage{pst-plot}
%\usepackage{pstricks-add}

\begin{document}

\psset{unit=1mm}
\psset{algebraic=true}
\begin{pspicture}(-10,10)(110,-110)
  \psaxes[ticks=none,labels=none,linewidth=.5pt]{->}(0,0)(-2,2)(105,-105)
  \psdot*[dotstyle=|](50,0)
  \psdot*[dotstyle=|](86,0)
  \rput[0](86,5){\psframebox{$c$}}
  %\rput[0](0,-50){$EU$}    
  \psplot[plotstyle=line,linewidth=0.5pt]{0}{68}{x-68}
  \psplot[plotstyle=line,linewidth=0.5pt]{68}{100}{68-x}
  \psplot[plotstyle=line,linewidth=0.5pt]{0}{93}{x-93}
  \psplot[plotstyle=line,linewidth=0.5pt]{93}{100}{93-x}
\end{pspicture}
\end{document}

c 应该放在盒子里,但却放在原点。编译示例

请你帮助我好吗?

相关内容