Search found 2 matches

by aableson
Wed Nov 11, 2015 5:08 pm
Forum: MiKTeX and proTeXt
Topic: Miktex pdflatex no longer compiles pstricks commands
Replies: 3
Views: 11425

Miktex pdflatex no longer compiles pstricks commands

Thanks for the quick reply Stefan. With the help from StackExchange folks as well, I have found a work-around. Replacing the original
\usepackage[pdf]{pstricks}
with
\usepackage{pstricks,auto-pst-pdf}
leads to successful compilation in the new MikTeX installation [Nov 2015].

Another poster ...
by aableson
Wed Nov 11, 2015 1:50 am
Forum: MiKTeX and proTeXt
Topic: Miktex pdflatex no longer compiles pstricks commands
Replies: 3
Views: 11425

Miktex pdflatex no longer compiles pstricks commands

I have been using MikTex 2.9's pdflatex for several years with sample code similar to:

\documentclass{standalone}
\usepackage[pdf]{pstricks}
\usepackage{pst-all}
\begin{document}
\psset{unit=1cm}
\begin{pspicture}(0,0)(4, 4)
\psaxes{-}(0,0)(0,0)(4,4)[$x$,0][$y$,0]
\end{pspicture}
\end ...