Ross,<br><br>Thank you for your quick feedback.<br><br><div><span class="gmail_quote">On 10/22/07, <b class="gmail_sendername">Ross Moore</b> &lt;<a href="mailto:ross@ics.mq.edu.au">ross@ics.mq.edu.au</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello Jonny,<br><br>On 23/10/2007, at 4:03 AM, Jonny Smith wrote:<br><br>&gt; Hi,<br>&gt;<br>
&gt; I have 2 little questions and was wondering if someone could help<br>&gt; me out...<br>&gt;<br>&gt; 1) pdflatex and xypic on miktex and winedt.<br>&gt;<br>&gt; I am using miktex 2.7 and winedt and wanna pdflatex my posters.
<br>&gt; Like many other users latex, dvips, and ps2pdf is not preferred. At<br>&gt;<br>&gt; <a href="http://www.esm.psu.edu/mac-tex/MacOSX-TeX-Digests/2002/MacOSX-">http://www.esm.psu.edu/mac-tex/MacOSX-TeX-Digests/2002/MacOSX-
</a><br>&gt; TeX_Digest_04-21-02.html<br>&gt;<br>&gt; I was reading some instruction on how to make that work. I did the<br>&gt; windows equivalent, i.e. copied all the xy*.tex files into the folder<br>&gt;<br>&gt; C:\programs\MiKTeX2.7Basic\tex\generic
<br>&gt;<br>&gt; and did<br>&gt;<br>&gt; \usepackage[xypdf,all,color]{xy}<br><br>This will work only if you have installed the support files that<br>are contained in this archive:<br><br>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www-texdev.ics.mq.edu.au/xypic/xypdf.tar.gz">
http://www-texdev.ics.mq.edu.au/xypic/xypdf.tar.gz</a><br><br>&gt;<br>&gt;<br>&gt; in the header of my latex file. When pdflatexing It would then<br>&gt; complain saying<br>&gt;<br>&gt; ! Xy-pic error: No `xypdf@&#39; option.
<br>&gt; \xyerror@ ...#2}\fi \errmessage {Xy-pic error: #1}<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&gt; l.75<br>&gt;<br>&gt; Do you know what to do?<br><br><br>Install the files from the&nbsp;&nbsp;xypdf.tar.gz
&nbsp;&nbsp;archive.<br>These can go into the same place as other Xy-pic files,<br>or into a local&nbsp;&nbsp;texmf/&nbsp;&nbsp;tree, within an appropriate<br>hierarchy of directories to match the system texmf/ tree.</blockquote><div><br><br>I thought I did exactly that and copied all these files into the xypic folder plus into my working directory. It ain&#39;t working though and still can&#39;t find that xypdf option.
<br>&nbsp;</div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">&gt;<br>&gt;<br>&gt; 2) I was playing with those color options, wanted to define some
<br>&gt; colors doing<br>&gt;<br>&gt; \xdefinecolor{mygreen}{cmyk}{0.92,0,0.87,0.09}<br>&gt;<br>&gt; as well as<br>&gt;<br>&gt; \newxycolor{mygreen}{0.92,0,0.87}<br>&gt; ...<br>&gt;<br>&gt; \xy<br>&gt; (0,-30)*+[F**:mygreen:&lt;10pt&gt;]{
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; X = \dots<br>&gt; }};<br>&gt; \endxy<br>&gt;<br>&gt; Turns out that this box is filled entirely black. Another box<br>&gt;<br>&gt; (0,-60)*+[F**:red:&lt;10pt&gt;]{<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; X = \dots<br>&gt; }};
<br>&gt;<br>&gt; in this file, however, becomes red as supposed to. Was then having<br>&gt;<br>&gt; \usepackage{xcolor}<br>&gt; \usepackage[dvips,all,color]{xy}<br>&gt;<br>&gt; in the header.<br>&gt;<br>&gt; Similarly, the line
<br>&gt;<br>&gt; \newxyColor{lightred}{0.7}{red}{}<br><br>That &#39;red&#39; is wrong.<br>That slot is for a color model, such as&nbsp;&nbsp;rgb, gray, cmyk.<br><br>You want:<br><br>&nbsp;&nbsp; \newxyColor{lightred}{0.7 0. 0.}{rgb}{}<br><br>
But that won&#39;t be a light red, it is darker<br>than full-on red:&nbsp;&nbsp;&nbsp;&nbsp;1 0 0 setrgbcolor .<br><br>If you are thinking about 70% red, then<br>better would be:<br><br>&nbsp;&nbsp; \newxyColor{lightred}{1.0 0.3 0.3}{rgb}{}<br><br>or<br>
<br>&nbsp;&nbsp; \newxyColor{lightred}{1.0 0.7 0.7}{rgb}{}<br><br>I doubt that either of these is actually what you want.<br>Perhaps this is better:<br><br>&nbsp;&nbsp; \newxyColor{lightred}{1.0 0.5 0.5}{rgb}{}</blockquote><div><br><br>Yes, it works. Thanks again. Meanwhile I have gotten pretty impressive results.
<br><br>Right now I am trying to draw a circle solidly filled with color but without a border. Was doing<br><br>\newxyColor{Nbackgrnd}{1 1 0.77}{rgb}{}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; % Neutral Background Color - Lighter Orange<br>...<br>(0,195)*+&lt;30pc&gt;[o**:Nbackgrnd]{&nbsp;&nbsp;&nbsp; };
<br><br>but it still puts some outline around that circle. I thought without an [F] it was supposed not to frame it. Do you know what the right syntax is?<br><br>Also, I am drawing huge posters where I need extra thick outlines around some other object (for instance certain boxes) to make them more visible. The thicker option didn&#39;t work as I thought
<br><br>&nbsp;&nbsp;&nbsp; (0,-7)*+[F**:Nbackgrnd:thicker:&lt;5pt&gt;]{<br>&nbsp;&nbsp;&nbsp; X = \dots<br>&nbsp;&nbsp;&nbsp; };<br><br>BTW: That thicker option worked pretty good though with the curve command<br><br>&nbsp;&nbsp;&nbsp; { &quot;O-KB-EF&quot; ; &quot;O-KB-G0&quot; **[O_font][thicker][thicker][thicker]\crv{ (-90,-60) } ?&gt;*\dir{&gt;} };
<br><br>and placed just the right emphasis on these splines.<br><br>Thanks,<br><br>Joe<br>&nbsp;</div></div>