DocBook_List This dialog creates a variable, itemized, or ordered list, or a procedure for DocBook documents. Carlos Leonhard Woelz Form1 0 0 504 538 Docbook List Wizard unnamed 11 6 Layout12 unnamed 0 6 Spacer3 Horizontal Expanding 296 0 CloseButton1_2 &Cancel false true Press this button to cancel the creation of the list or procedure. No action will be performed. OKButton 1 0 0 0 &OK true false @VariableOption @ItemizedOption @OrderedOption @ProcedureOption true Press this button to create the selected list or procedure. GroupBox1 List Options unnamed 11 6 Layout7 unnamed 0 6 sb_lin 5 @widgetText Select or enter in this spin box the number of list entries or steps that should be created by the wizard. After using the wizard, you can add (or remove) more entries or steps manually. TextLabel2 Number of list items or steps: Select or enter in this spin box the number of list entries or steps that should be created by the wizard. After using the wizard, you can add (or remove) more entries or steps manually. TextLabel1_2_2 <qt> Select the list type: <ul> <li><b>variablelist:</b> a list with two sections for each item: the term and the definition.</li> <li><b>itemizedlist:</b> a list used when the order of the items is not important.</li> <li><b>orderedlist:</b> a list used when the order of the items is important (for instance, a list of things in order of preference). Do not use orderedlist to describe the steps required to perform an action.</li> <li><b>procedure:</b> list of an sequence of ordered steps, describing to the reader how to perform a task. You can add substeps later.</li> </ul> </qt> WordBreak|AlignJustify|AlignTop ButtonGroup1 List Type unnamed 11 6 ProcedureOption NoFocus &procedure false @null echo '<procedure>' echo '' l=1 while [ $l -le @sb_lin ]; do echo '<step><para>' echo 'Step '$l'.' echo '</para></step>' echo '' l=$((l+1)) done echo '</procedure>' Select this option to create a procedure. A procedure is a sequence of ordered steps, describing to the reader how to perform a task. You can add nested substeps. Here is one example of a procedure: <procedure> <step><para>First step.</para></step> <step><para>Second step.</para> <substeps> <step><para>First substep of the second step.</para></step> </substeps> </step> </procedure> ItemizedOption itemi&zedlist @null echo '<itemizedlist>' echo '' l=1 while [ $l -le @sb_lin ] ; do echo '<listitem><para>' echo 'Text entry '$l'.' echo '</para></listitem>' echo '' l=$((l+1)) done echo '</itemizedlist>' Select this option to create a itemizedlist. A itemizedlist is a list used when the order of the items is not important. Here is one example of a itemizedlist: <itemizedlist> <listitem><para> First item. </para></listitem> <listitem><para> Second item. </para></listitem> </itemizedlist> OrderedOption true NoFocus or&deredlist false @null echo '<orderedlist>' echo '' l=1 while [ $l -le @sb_lin ] ; do echo '<listitem><para>' echo 'Text entry '$l'.' echo '</para></listitem>' echo '' l=$((l+1)) done echo '</orderedlist>' Select this option to create a orderedlist. A orderedlist is a list used when the order of the items is important. A number will be associated with each entry, in order, starting from one. Here is one example of a orderedlist: <orderedlist> <listitem><para> First item. </para></listitem> <listitem><para> Second item. </para></listitem> </orderedlist> VariableOption TabFocus &variablelist true @null echo '<variablelist>' echo '' l=1 while [ $l -le @sb_lin ]; do echo '<varlistentry>' echo '<term>Term '$l'</term>' echo '<listitem><para>' echo 'Definition '$l'.' echo '</para></listitem>' echo '</varlistentry>' echo '' l=$((l+1)) done echo '</variablelist>' Select this option to create a variablelist. A variablelist is a list with two sections for each item: the term (the tag used is <term>) and the definition (the tag used is <listitem>). To mark each entry of the list, the <varlistentry> tag is used. Here is one example of a variablelist: <variablelist> <varlistentry> <term>Term text</term> <listitem><para>Definition text.</para></listitem> </varlistentry> </variablelist> VariableOption sb_lin OKButton CloseButton1_2 ItemizedOption