[pstricks] xelatex and pstricks not compile after updating texlive 2013

Herbert Voss Herbert.Voss at FU-Berlin.DE
Mon Aug 5 09:03:54 CEST 2013


Am 05.08.2013 04:29, schrieb Pablo González:
> I have the following file
> \documentclass{article}%
> \usepackage{pstricks}
> \listfiles
> \begin{document}
> \begin{pspicture*}(0,0)(4,1)
> \psset{unit=0.75cm,labelsep=3pt,linewidth=0.6pt}
> \psline(0.5,0.5)(3.5,0.5)
> \begin{scriptsize}
> \uput[dl](0.5,0.5){$A$}
> \uput[dr](3.5,0.5){$B$}
> \end{scriptsize}
> \end{pspicture*}
> % second enviroment
> \begin{pspicture*}(0,0)(4,1)
> \psset{unit=0.75cm,labelsep=3pt,linewidth=0.6pt}
> \psline(0.5,0.5)(3.5,0.5)
> \begin{scriptsize}
> \uput[dl](0.5,0.5){$A$}
> \uput[dr](3.5,0.5){$B$}
> \end{scriptsize}
> \end{pspicture*}
> \end{document}

XeTeX has problems with the clipping of objects. Use the
star version of pspicture only if you really need it. This
works:

\documentclass{article}
\usepackage{pstricks}
\listfiles
\begin{document}
\begin{pspicture}(0,0)(4,1)
\psset{unit=0.75cm,labelsep=3pt,linewidth=0.6pt}
\psline(0.5,0.5)(3.5,0.5)
\scriptsize
\uput[dl](0.5,0.5){$A$}
\uput[dr](3.5,0.5){$B$}
\end{pspicture}
% second enviroment
\begin{pspicture*}(0,0)(4,1)
\psset{unit=0.75cm,labelsep=3pt,linewidth=0.6pt}
\psline(0.5,0.5)(3.5,0.5)
\scriptsize
\uput[dl](0.5,0.5){$A$}
\uput[dr](3.5,0.5){$B$}
\end{pspicture*}
\end{document}

Herbert


More information about the PSTricks mailing list