I wanna place some text below a line. So I'm using \bput. Works great, but text is always centered. Is there a way to align it left / right? See the picture for better bellow.
\documentclass[letterpaper,dvips]{article}
\usepackage[utf8]{inputenc}
\usepackage{pst-all}
\usepackage{pst-eps}
\begin{document}
\pagestyle{empty}
\begin{TeXtoEPS}
\fontfamily{phv}\selectfont
\psset{xunit=1cm,yunit=1cm,runit=1cm}
\begin{pspicture}(0,-8.3)(16,0.0)
\psframe[fillstyle=solid, linewidth=1pt](0,-8.3)(16,0.0)
\psset{linewidth=2pt}
\psframe[fillstyle=none, linewidth=0pt](0.5,-0.6)(15.5,-3.0)
\pcline[linestyle=solid, linecolor=black]{<->}(1.0,-1.5)(15.0,-1.5)
\bput*{:U}(0.1){LongerWord1}
\bput*{:U}(0.5){LongerWord2}
\bput*{:U}(0.90){LongerWord3}
\psframe[fillstyle=none, linewidth=0pt](0.5,-3.6)(15.5,-6.0)
\pcline[linestyle=solid, linecolor=black]{<->}(1.0,-4.5)(15.0,-4.5)
\bput*{:U}(0.1){Short1}
\bput*{:U}(0.5){Short2}
\bput*{:U}(0.90){Short3}
\end{pspicture}
\end{TeXtoEPS}
\end{document}


