<div dir="ltr"><div>bonjour</div>
<div>voici comment faire un papier millimitré et les axes</div>
<div><strong> \documentclass[12pt]{article}</strong></div>
<div><strong>\usepackage{amsmath}<br>\usepackage{amsfonts}<br>\usepackage{amssymb}</strong></div>
<div><strong>\usepackage{pst-all}<br>\usepackage{multido}</strong></div>
<div><br><strong>%-------------------------------------------------------------------------<br><em><font color="#ff0000">% je défini les couleurs de la grille</font><br></em>\definecolor{gris}{rgb}{.9, .9, .9}</strong></div>

<div><strong>\definecolor{bla}{rgb}{.5, .5, .5}<br><em><font color="#ff0000">% je defini le mon papier millimitré</font></em><br>\newpsobject{mypmm}{psgrid}{subgriddiv=5,gridlabels=0pt,subgridcolor=gris,gridcolor=bla}<br>
%-------------------------------------------------------------------------------------------<br></strong></div>
<div><strong><font color="#3366ff">\begin{document}</font></strong></div>
<div><strong><font color="#ff0000"><em>% je construit les axes et la grille</em><br></font>\begin{<font color="#33ccff">pspicture</font>}(-4,-2)(4,2)</strong></div>
<div><strong>\mypmm</strong></div>
<div><strong>\psaxes[Ox=0,Dx=1,Oy=0,Dy=1,linecolor=red]{-&gt;}(0,0)(-4,-2)(4,2)</strong></div>
<div><strong>\end{<font color="#33ccff">pspicture</font>}<br><font color="#3366ff">\end{document}</font></strong></div>
<div><strong><font color="#3366ff"></font></strong> </div>
<div><strong><font color="#990000">la compilation se fait ainsi: latex---&gt; dvips(<a href="http://doc4.ps">doc4.ps</a>)----&gt;ghostview----&gt;fichier------&gt;convert -----&gt;toutes----&gt;ok (doc4.pdf)</font></strong></div>

<p><strong><font color="#3366ff"></font></strong> </p>
<div><strong>salam, abdelhamid</strong></div>
<div><br></div>
<div><br><br> </div>
<div class="gmail_quote">On Fri, Aug 21, 2009 at 11:00 AM, <span dir="ltr">&lt;<a href="mailto:pstricks-request@tug.org">pstricks-request@tug.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Send PSTricks mailing list submissions to<br>       <a href="mailto:pstricks@tug.org">pstricks@tug.org</a><br>
<br>To subscribe or unsubscribe via the World Wide Web, visit<br>       <a href="http://tug.org/mailman/listinfo/pstricks" target="_blank">http://tug.org/mailman/listinfo/pstricks</a><br>or, via email, send a message with subject or body &#39;help&#39; to<br>
       <a href="mailto:pstricks-request@tug.org">pstricks-request@tug.org</a><br><br>You can reach the person managing the list at<br>       <a href="mailto:pstricks-owner@tug.org">pstricks-owner@tug.org</a><br><br>When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of PSTricks digest...&quot;<br><br><br>Today&#39;s Topics:<br><br>  1. psgraph and psgrid (bereket T)<br>  2. Re: psgraph and psgrid (Doris Wagner)<br><br><br>----------------------------------------------------------------------<br>
<br>Message: 1<br>Date: Thu, 20 Aug 2009 05:49:47 -0700 (PDT)<br>From: bereket T &lt;<a href="mailto:bermaths@yahoo.com">bermaths@yahoo.com</a>&gt;<br>To: <a href="mailto:pstricks@tug.org">pstricks@tug.org</a><br>Subject: [pstricks] psgraph and psgrid<br>
Message-ID: &lt;<a href="mailto:985589.13027.qm@web30002.mail.mud.yahoo.com">985589.13027.qm@web30002.mail.mud.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset=&quot;us-ascii&quot;<br><br>Hi Everyone:<br><br><br>I would like to draw a rectangular coordinate system with grids. I used the code below. However, the coordinate axes are being hided by the grids which are drawn over them. Could someone help on how to put the grids behind the coordinate axes?<br>
<br>*********************************************<br><br>\documentclass{article}<br>\usepackage{pstricks,pstricks-add}<br>\usepackage{multido}<br><br>\begin{document}<br><br>\begin{psgraph}(0,0)(-4,-2)(4,2){8cm}{!}<br>\psgrid[gridcolor=lightgray,subgriddiv=1,gridlabels=0]<br>
\end{psgraph}<br><br>\end{document}<br><br>Sincerely,<br>Bereket<br><br><br><br><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: &lt;<a href="http://tug.org/pipermail/pstricks/attachments/20090820/a5b38dd6/attachment-0001.html" target="_blank">http://tug.org/pipermail/pstricks/attachments/20090820/a5b38dd6/attachment-0001.html</a>&gt;<br>
<br>------------------------------<br><br>Message: 2<br>Date: Thu, 20 Aug 2009 18:47:55 +0200<br>From: Doris Wagner &lt;<a href="mailto:doris.wagner@mac.com">doris.wagner@mac.com</a>&gt;<br>To: Graphics with PSTricks &lt;<a href="mailto:pstricks@tug.org">pstricks@tug.org</a>&gt;<br>
Subject: Re: [pstricks] psgraph and psgrid<br>Message-ID: &lt;<a href="mailto:B4590651-692F-4EE3-A649-58B1219ACEC1@mac.com">B4590651-692F-4EE3-A649-58B1219ACEC1@mac.com</a>&gt;<br>Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes<br>
<br>bereket,<br><br>the problem is, that _first_ the axes are drawn and second the grid;<br>so I would use psaxes explicitely:<br><br>\documentclass{article}<br>\usepackage{pstricks,pstricks-add}<br>\begin{document}<br>\begin{pspicture}(-4,-2)(4,2)<br>
\psgrid[gridcolor=lightgray,subgriddiv=1,gridlabels=0]<br><br>\psaxes(0,0)(-4,-2)(4,2)<br>\end{pspicture}<br><br>\end{document}<br><br><br><br><br>On 20.08.2009, at 14:49, bereket T wrote:<br><br>&gt; \documentclass{article}<br>
&gt; \usepackage{pstricks,pstricks-add}<br>&gt; \usepackage{multido}<br>&gt;<br>&gt; \begin{document}<br>&gt;<br>&gt; \begin{psgraph}(0,0)(-4,-2)(4,2){8cm}{!}<br>&gt; \psgrid[gridcolor=lightgray,subgriddiv=1,gridlabels=0]<br>
&gt; \end{psgraph}<br>&gt;<br>&gt; \end{document}<br><br><br><br>------------------------------<br><br>_______________________________________________<br>PSTricks mailing list<br><a href="mailto:PSTricks@tug.org">PSTricks@tug.org</a><br>
<a href="http://tug.org/mailman/listinfo/pstricks" target="_blank">http://tug.org/mailman/listinfo/pstricks</a><br><br><br>End of PSTricks Digest, Vol 79, Issue 21<br>****************************************<br></blockquote>
</div><br></div>