On Sun, 12 Jan 2003 13:30:19 +0100
Hans Hagen
At 09:53 AM 1/9/2003 +0100, you wrote:
That looks good. I tried to change that and run a file that should produce a pdf but I got the same error again though. Do I have to refresh some files or so?
strange, can you make me a minimal test file?
Since I updated to the latest beta today I cant reproduce it. Thats very strange. Anyways, It now works with the -G0, -Ppdf and -o options as it is now. Great!
It seems that the list is (according to the files in my
/usr/share/texmf/tex/generic/pstricks/ dir)
multido.tex pst-3d.tex pst-blur.tex pst-char.tex pst-coil.tex pst-eps.tex pst-fill.tex pst-ghsb.tex pst-gr3d.tex pst-grad.tex pst-key.tex pst-node.tex pst-plot.tex pst-poly.tex pst-slpe.tex pst-text.tex pst-tree.tex pstricks.tex
are you sure that these additions don't conflict? if you have tested it for some time we can add something to the module
I am not really sure, but the pst-all.sty file (which loads all pstricks packages) looks like this: =========== \ProvidesPackage{pst-all}[1997/03/25 all pstricks tools] % this loads the color package and pstricks in the right order \usepackage{pstcol} % Require a color.cfg file defined \usepackage{pst-grad} \usepackage{pst-plot} \usepackage{pst-coil} \usepackage{pst-text} \usepackage{pst-char} \usepackage{pst-node} \usepackage{pst-3d} \usepackage{pst-eps} \usepackage[tiling]{pst-fill} \usepackage{pst-tree} \usepackage{multido} \endinput =========== And that comment seems to me that if one loads the packages in that order it will work. In princip the only thing every single package does is \input-ing the .tex file, i.e. pst-char.sty looks like this: =========== \ProvidesPackage{pst-char}[1997/03/25 package wrapper for PSTricks \input pst-char.tex \endinput =========== There is one exeption. The pst-fill packages also does \def\PstTiling{true} when loaded with the option [tiling]. I think the packages can be added so people can try it out and see if they work together. Regards, Micke P