1

Possible Duplicate:
How to use PSTricks in pdfLaTeX?

What is wrong with this code:

\documentclass{article}
\usepackage{pstricks}

\begin{document}    
\begin{pspicture}(-0.5,0)(2.5,1)
    \psdots(0,0)(2,0)(1,1)
\end{pspicture}
\end{document}

I am trying to compile it with pdflatex, and getting following error:

     ! Undefined control sequence.
<recently read> \c@lor@to@ps 

l.6     \psdots(
             0,0)(2,0)(1,1)
? 
  • 1
    run the document with xelatex and look also at http://tug.org/PSTricks/main.cgi?file=pdf/pdfoutput –  Mar 15 '12 at 20:56
  • Welcome to TeX.sx! Your question was migrated here from [so]. Please register on this site, too, and make sure that both accounts are associated with each other, otherwise you won't be able to comment on or accept answers or edit your question. – Werner Mar 15 '12 at 21:02

1 Answers1

5

You have to add the option [pdf] to \usepackage{pstricks} for it to work with pdflatex. This would make your code read as follows:

\documentclass{article}
\usepackage[pdf]{pstricks}

\begin{document}    
\begin{pspicture}(-0.5,0)(2.5,1)
    \psdots(0,0)(2,0)(1,1)
\end{pspicture}
\end{document}

Note that you need to use shell escape with pdflatex for it work. Thus, issue

pdflatex -shell-escape file.tex

to compile.

N.N.
  • 36,163