Ignore:
Timestamp:
09/21/07 11:40:44 (17 years ago)
Author:
pinsard
Message:

small changes (lodyc became locean, trailing blanks)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/xmldoc/firststeps.xml

    r270 r291  
    1212<!-- 
    1313instructions to create html file 
    14 xsltproc ?-?-param  section.autolabel 1 -output firststep.html /sw/share/xml/xsl/docbook-xsl/xhtml/docbook.xsl firststep.xml  
    15 xsltproc -output firststep.html /sw/share/xml/xsl/docbook-xsl/xhtml/docbook.xsl firststep.xml  
     14xsltproc ?-?-param  section.autolabel 1 -output firststep.html /sw/share/xml/xsl/docbook-xsl/xhtml/docbook.xsl firststep.xml 
     15xsltproc -output firststep.html /sw/share/xml/xsl/docbook-xsl/xhtml/docbook.xsl firststep.xml 
    1616xsltproc  /sw/share/xml/xsl/docbook-xsl/xhtml/chunk.xsl  firststep.xml 
    1717xsltproc ?-?-param  section.autolabel 1 /sw/share/xml/xsl/docbook-xsl/xhtml/chunk.xsl firststep.xml 
     
    3131    First steps with <application>SAXO</application> 
    3232  </title> 
    33    
     33 
    3434  <articleinfo> 
    3535    <authorgroup> 
     
    5757        <revremark>split with getsaxo</revremark> 
    5858      </revision> 
    59      </revhistory>   
     59     </revhistory> 
    6060     <pubdate>$Id$</pubdate> 
    6161  </articleinfo> 
    62    
    63  
    64    
    6562<sect1 id="beforefirststeps"> 
    6663<title>Before this</title> 
    6764<para> 
    68 In this document, we supposed that you followed <ulink url="./getsaxo.html">Get SAXO</ulink> recommendations.  
     65In this document, we supposed that you followed <ulink url="./getsaxo.html">Get SAXO</ulink> recommendations. 
    6966</para> 
    7067</sect1> 
     
    7976      </title> 
    8077      <para> 
    81         Each IDL session using <application>SAXO</application> must always start with: <prompt>&promptidl;</prompt> <userinput><command>@init</command></userinput>.       
     78        Each IDL session using <application>SAXO</application> must always start with: <prompt>&promptidl;</prompt> <userinput><command>@init</command></userinput>. 
    8279      </para> 
    8380      <para> 
     
    116113      </variablelist> 
    117114      </para> 
    118   
    119       
    120115    </sect2> 
    121116    <sect2 id="basic_plots"> 
     
    141136            <callout arearefs="findgen"> 
    142137              <para> 
    143                 <command>findgen</command> stands for  
    144 <emphasis role="bold">f</emphasis>loat <emphasis role="bold">ind</emphasis>ex <emphasis role="bold">gen</emphasis>erator.  
     138                <command>findgen</command> stands for 
     139<emphasis role="bold">f</emphasis>loat <emphasis role="bold">ind</emphasis>ex <emphasis role="bold">gen</emphasis>erator. 
    145140                <screen format="linespecific"> 
    146141  <prompt>&promptidl;</prompt> <userinput><command>print, findgen(6)</command></userinput> 
    147142  <computeroutput>      0.00000      1.00000      2.00000      3.00000      4.00000      5.00000</computeroutput> 
    148143                </screen> 
    149               </para>  
     144              </para> 
    150145            </callout> 
    151146          </calloutlist> 
    152147        </screenco> 
    153148     </para> 
    154       
    155149      <para> 
    156150        Using IDL <command>plot</command> command is quite inconvenient to save the figure as a postscript. In addition, positioning the figure on the window/page by using <varname>!p.position</varname>, <varname>!p.region</varname> and <varname>!p.multi</varname> is often a nightmare. That's why we developed <command>splot</command> (like super-plot) which can be used in the same way as plot but is much more convenient to make postscript and position the figure. 
     
    188182            <callout arearefs="make_ps"> 
    189183              <para> 
    190                 <remark>If needed, the name of the postscript will automatically be completed with .ps. Just hit return, if you want to use the default postscript name: <filename>idl.ps</filename>.</remark>  
     184                <remark>If needed, the name of the postscript will automatically be completed with .ps. Just hit return, if you want to use the default postscript name: <filename>idl.ps</filename>.</remark> 
    191185              </para> 
    192186            </callout> 
     
    219213  <computeroutput>   MODE            LONG               420</computeroutput> 
    220214  <computeroutput>   ATIME           LONG64                1122424373</computeroutput> 
    221   <computeroutput>   CTIME           LONG64                1122424373</computeroutput>         
    222   <computeroutput>   MTIME           LONG64                1122424373</computeroutput>         
     215  <computeroutput>   CTIME           LONG64                1122424373</computeroutput> 
     216  <computeroutput>   MTIME           LONG64                1122424373</computeroutput> 
    223217  <computeroutput>   SIZE            LONG64                      4913</computeroutput> 
    224218        </screen> 
     
    239233  <prompt>&promptidl;</prompt> <userinput><command>oplot, y^2, color = 50, linestyle = 2</command></userinput> <ulink url="./figpng/basic_splot4.png">&showfig;</ulink> 
    240234        </screen> 
    241         Use the keyword small to produce multi plots figures.  
     235        Use the keyword small to produce multi plots figures. 
    242236        <screenco> 
    243237          <areaspec> 
     
    267261        </screenco> 
    268262      </para> 
    269       
    270263      </sect3> 
    271264 
     
    275268      </title> 
    276269      <para> 
    277         Following <command><link linkend="basic_splot">splot</link></command> example, we provide <command>scontour</command> as a "super <command>contour</command>".  
     270        Following <command><link linkend="basic_splot">splot</link></command> example, we provide <command>scontour</command> as a "super <command>contour</command>". 
    278271        <screen format="linespecific"> 
    279272  <prompt>&promptidl;</prompt> <userinput><command>z = dist(n)</command></userinput> 
     
    328321        </title> 
    329322        <para> 
    330           <command>tvplus</command> is a enhanced version of tvscl and allow you to have a quick look and perform basic exploration of 2D arrays. 
     323          <command>tvplus</command> is a enhanced version of <command>tvscl</command> and allow you to have a quick look and perform basic exploration of 2D arrays. 
    331324          <screen format="linespecific"> 
    332325  <prompt>&promptidl;</prompt> <userinput><command>tvplus, dist(20)</command></userinput> <ulink url="./figpng/tvplus.png">&showfig;</ulink> 
     
    385378      <sect3 id="load_fromdata"> 
    386379        <title> 
    387           Easiest solution: load data grid (regular or not) directly from the data file. 
     380          Easiest solution: load data grid (regular or not) directly from the data file 
    388381        </title> 
    389382        <para> 
    390           Example of Levitus temperature on a regular 1x1 grid.  
     383          Example of Levitus temperature on a regular 1x1 grid. 
    391384          <screen format="linespecific"> 
    392385  <prompt>&promptidl;</prompt> <userinput><command>@tst_initlev</command></userinput> 
     
    493486        <simpara><emphasis>Beware, the command is <command>tst_plt</command> and not <command>@tst_plt</command> as <filename>tst_plt.pro</filename> is a procedure and not an include.</emphasis></simpara> 
    494487        <para> 
    495           See the results with  
     488          See the results with 
    496489          <itemizedlist> 
    497490          <listitem><simpara><command>@tst_initlev</command>&figsplt_lev;</simpara></listitem> 
     
    515508          </screen> 
    516509        </para> 
    517           <simpara><emphasis>Beware, the command is <command>tst_pltz</command> and not <command>@tst_pltz</command> as <filename>tst_pltz.pro</filename> is a procedure and not an include.</emphasis></simpara>          
    518         <para> 
    519           See the results with  
     510          <simpara><emphasis>Beware, the command is <command>tst_pltz</command> and not <command>@tst_pltz</command> as <filename>tst_pltz.pro</filename> is a procedure and not an include.</emphasis></simpara> 
     511        <para> 
     512          See the results with 
    520513          <itemizedlist> 
    521514          <listitem><simpara><command>@tst_initlev</command>&figspltz_lev;</simpara></listitem> 
     
    541534          <simpara><emphasis>Beware, the command is <command>tst_pltt</command> and not <command>@tst_pltt</command> as <filename>tst_pltt.pro</filename> is a procedure and not an include.</emphasis></simpara> 
    542535        <para> 
    543           See the results with  
     536          See the results with 
    544537          <itemizedlist> 
    545538          <listitem><simpara><command>@tst_initlev</command>&figspltt_lev;</simpara></listitem> 
     
    564557 
    565558  </sect1> 
    566    
     559 
    567560</article> 
Note: See TracChangeset for help on using the changeset viewer.