The problem is not related to Kile. And it is not comprehensible for me because the code you provided compiles fine for me as is via LaTeX → PS → PDF (see attachment). Run LaTeX on the following minimal code and submit the file list from the log file.
Code: Select all
\documentclass{article}
\usepackage{vaucanson-g}
\begin{document}
Test
\end{document}
My file list when compiling your example looks like shown below. Compare to yours with special attention to the
vaucanson-g package.
Code: Select all
*File List*
standalone.cls 2010/03/27 v0.3a Class to compile TeX sub-files standalone
kvoptions.sty 2010/02/22 v3.7 Keyval support for LaTeX options (HO)
keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
kvsetkeys.sty 2010/03/01 v1.9 Key value parser (HO)
infwarerr.sty 2010/04/08 v1.3 Providing info/warning/message (HO)
etexcmds.sty 2010/01/28 v1.3 Prefix for e-TeX command names (HO)
article.cls 2007/10/19 v1.4h Standard LaTeX document class
size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
standalone.cfg 2010/03/27 v0.3a Default configuration file for 'standalone' class
preview.sty 2010/02/14 11.86 (AUCTeX/preview-latex)
prtightpage.def
vaucanson-g.sty 2008/10/27 package wrapper for VauCanSon-G v. 0.4
ifthen.sty 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
xcolor.sty 2007/01/21 v2.11 LaTeX color extensions (UK)
color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
dvips.def 1999/02/16 v3.0i Driver-dependant file (DPC,SPQR)
VCColor-names.def
pstricks.sty 2010/06/17 v0.45 LaTeX wrapper for `PSTricks' (RN,HV)
pstricks.tex 2010/06/06 v2.08 `PSTricks' (tvz,hv)
pst-xkey.tex 2005/11/25 v1.6 PSTricks specialization of xkeyval (HA)
xkeyval.sty 2008/08/13 v2.6a package option processing (HA)
xkeyval.tex 2008/08/13 v2.6a key=value parser (HA)
pst-fp.tex 2010/06/06 v2.08 `PST-fp' (hv)
pst-node.sty 2010/04/22 package wrapper for pst-node.tex
pst-node.tex 2010/06/06 1.13 `pst-node' (tvz)
pst-plot.sty 2010/01/22 package wrapper for pst-plot.tex
pst-plot.tex 2010/06/22 1.17 `pst-plot' (tvz,hv)
pst-coil.sty 2010/02/01 package wrapper for pst-coil.tex (hv)
pst-coil.tex 2010/02/01 v1.03 `PST-coil' (tvz,hv)
multido.sty 2004/05/17 package wrapper for PSTricks `multido.tex', (HV/RN)
pst-3d.sty 2009/07/28 package wrapper for pst-3d.tex (hv)
pst-3d.tex 2010/02/14 v1.11 `PST-3d' (hv)
calc.sty 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
***********
If you can't get it working, try the
pgf/tikZ package as a possible alternative. Here is a translation of your example.
Code: Select all
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{automata,positioning}
\begin{document}
\begin{tikzpicture}[%
>=stealth,
shorten >=2pt,
auto,
on grid,
node distance=3cm
]
\node[state,initial] (A) {A};
\node[state,accepting] (3) [right=of A] {3};
\node[state] (4) [below=of A] {4};
\node[state,accepting] (5) [right=of 4] {5};
\node[state] (B) [right=of 3] {B};
\path[->] (A) edge node {a} (3)
(A) edge node {c} (5)
(A) edge node {b} (4)
(3) edge [loop above] node {a} ()
(3) edge [bend left=15] node {c} (5)
(5) edge [bend left=15] node {a} (3)
(4) edge [bend left=15] node {c} (5)
(5) edge [bend left=15] node {b} (4)
(5) edge [loop below] node {c} ()
(3) edge [bend left=15] node {b} (B)
(B) edge [bend left=15] node {a} (3)
(B) edge node {c} (5);
\end{tikzpicture}
\end{document}
Best regards and welcome to the board
Thorsten