[tex-live] PStricks is broken with XeTeX with latest TeXLive update

Herbert Voss Herbert.Voss at FU-Berlin.DE
Wed Jun 1 21:17:15 CEST 2011


Am 01.06.2011 17:20, schrieb Wojtek:
 > I think my problem is related to the one discussed under this topic.
 > Here is the "minimal" file:
 >
 > ===============================================
 > documentclass{article}
 > \usepackage{pstricks, pst-plot}
 > \def\moj{320}
 > \begin{document}
 >
 > \begin{pspicture}(20,10)
 > \psgrid[gridcolor=blue, gridwidth=.3pt](-10,-10)(20,10)%%
 > \multido{\ikat=0+1}{\moj}{%
 > \rput{\ikat}{\psline(1,0)(6,0)}}
 > \psgrid[gridcolor=red, gridwidth=.3pt](-10,-10)(20,10)%%
 > \end{pspicture}
 > \end{document}
 > =============================================

use it this way:

\documentclass{article}
\usepackage{pstricks,multido}
\SpecialCoor
\begin{document}

\begin{pspicture}(-6,-6)(6,6)
\psgrid[gridcolor=blue, gridwidth=.3pt](-6,-6)(6,6)
\multido{\ikat=0+1}{380}{\psline(1;\ikat)(6;\ikat)}
\psgrid[gridcolor=red, gridwidth=.3pt](-6,-6)(6,6)
\end{pspicture}

\end{document}

it seems to be a problem with rounding errors when
reading and writing the transformation matrix very often

Herbert


More information about the tex-live mailing list