I'd like to use the vaucanson-g package to draw some automatons but I'm not an expert in using ps/dvi. I found an older post in the forum that suggested (auto)pst-pdf would do the job and I think it will but when I run my compiler (TeXShop) I'm informed there is an option clash related to some package xcolor (which I guess is called by vaucanson-g ?). Does anyone know how to get around it? I don't need the colors in vaucanson-g so if there's an easy way to just turn that off I'd be perfectly fine with that.
Example:
Code: Select all
\documentclass{article}
\usepackage{pst-pdf}
%\usepackage{auto-pst-pdf}
\usepackage{vaucanson-g}
\begin{document}
\begin{VCPicture}{(0,-2)(6,2)}
% states
\State[p]{(0,0)}{A} \State{(3,0)}{B} \State[r]{(6,0)}{C}
% initial--final
\Initial{A} \Final{C}
% transitions
\EdgeL{A}{B}{a} \ArcL{B}{C}{b} \ArcL{C}{B}{b}
\LoopN{A}{a} \LoopS{C}{d}
%
\end{VCPicture}
abc
\end{document}
If i reverse the order of the vaucanson-g and pst-pdf packages I get a different problem that seems trickier to solve (\begin{pspicture} ended by \end{VCPicture}) but that might also be something helpful to one wiser than I.
Thank you!