Hi,<br>
<br>
I&#39;m trying to combine the packages xypic, color, and lately pst-grad.
Why? I&#39;ve already designed fairly complex posters with xypic and color
but have been recommended by one of the maintainers of xypic to include pstricks to achieve my design goals. Redrawing all my posters
with pstricks only is not an option for me since too time-intense and such...<br>
<br>
So I started off fooling around and figured there is a package clash with the
color option of xypic and pstricks. Also color and pstricks apparently
do not work together which has been discussed for example at<br>
<br>
<a href="http://tug.org/mailman/htdig/pstricks/2005/003350.html">http://tug.org/mailman/htdig/pstricks/2005/003350.html</a><br>
<br>
as well as in the README file of the pstricks package:<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a - To use the standard `color&#39; or `xcolor&#39; package with PSTricks, you<br>
must load the `pstricks.sty&#39; package, which interface the two packages,<br>
loading them in the right order, and overriding some small parts of<br>
PSTricks to allow it to use the `color&#39; or `xcolor&#39; package system for<br>
specifying color. We STRONGLY recommend that you use this way today.<br>
pstricks.sty loads by default the xcolor package, but there is an option<br>
&quot;noxcolor&quot;. If you are a LaTeX user then load _always_ first the<br>
pstricks.sty package.<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; b - Don&#39;t try to load the `color&#39; or `xcolor&#39; package if you use<br>
`pstricks.sty&#39; or `pst-all&#39; (it is already loaded in the correct order).<br>
<br>
I&#39;m not sure if I understood this right so I did<br>
<br>
\documentclass{minimal}<br>
<br>
\usepackage{pstricks}<br>
\usepackage{pst-grad}<br>\usepackage[usenames]{color}<br>
\usepackage[dvips,all,color]{xy}<br>
<br>
\definecolor{Ofont}{rgb}{0,0,0.8}<br>
<br>
\begin{document}<br>
<br>
\newxyColor{lightblue}{0.8 0.85 1}{rgb}{}<br>
<br>
\psset{linestyle=none,fillstyle=gradient,gradmidpoint=0,gradend=yellow!40}<br>
<br>
\centering<br>
\xy (0,-20)*+&lt;1.5pt&gt;[&lt;40pt&gt;]{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \begin{pspicture}(-2.5,-1.25)(2.5,1.25)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \psellipse[gradbegin=blue!40,GradientScale=2](2.5,1.25)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \end{pspicture}<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \begin{pspicture}(3,4)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \pspolygon[gradbegin=black,GradientPos={(-1,1)},GradientScale=2](0,0)(1,3)(3,2)(1.5,2)(2,0.5)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \end{pspicture}<br>
};<br>
(0,-30)*++[F**:lightblue:&lt;10pt&gt;]{<br>{\color{Ofont}<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - X&nbsp;&nbsp; &amp; = &amp; Y <br>
}<br>
};<br>
\endxy<br>
<br>
\end{document} <br>
<br>
which doesn&#39;t seem to be right.<br>
<br>Do you know what&#39;s wrong?<br>
<br>
Thanks,<br>
<br>
Joe<br>