When I install a basic miktex and I compile my code everything works perfectly with xelatex. However after I install all the packages and updates and refresh the FNDB database and update formats and then re-compile my code i can't see my graphics anymore. I have --enable-write18 and -shell-escape enabled for pdflatex. Why does it not compile after installing all packages and updates but works perfectly with basic miktex ?
Code: Select all
\documentclass{article}
\usepackage{pstricks}
\pagestyle{empty}
\begin{document}
\psgrid[gridwidth=1pt,subgridwidth=0.1pt,subgriddiv=4](-3,-3)(3,3)
\rput[b]{0}(3,2){C}
\multirput{0}(0,0)(0.25,0.25){5}{x}
\uput{2pt}[0]{0}(3,2){a}
\uput{4pt}[dr]{0}(1,1){o}
\end{document}