I can produce (it seems) a dvi file, but the subsequent dvips step fails with "dvips: ! Couldn't find header file pst-circ.pro"
I downloaded the .pro file from here http://pstcirc.free.fr/download/download.htm
and put it in /usr/share/texmf/dvips/pstricks (because that's where the related .pro files seemed to be).
Has anyone encountered this problem before?
Ken
Here's the file I'm compiling:
Code: Select all
\documentclass[12pt]{article}
\usepackage{pstricks}
\usepackage{pst-circ}
\begin{document}
\begin{pspicture}(0,0)(3,2)
\pnode(0,1){A}
\pnode(3,1){B}
\resistor(A)(B){$R$}
\end{pspicture}
\end{document