Suggestions
Search:
 
Next:
varlistentry
Previous:
variablelist
Up:
Lists lists.mod.xsl
Reference Section

Name

orderedlist — Process orderedlist [2.0.9] elements

Synopsis

<xsl:template match="orderedlist">
<xsl:variable name="numeration">
			<xsl:choose>
				<xsl:when test="@numeration">
					<xsl:value-of select="@numeration"/>
				</xsl:when>
				<xsl:otherwise>
					<xsl:value-of select="arabic"/>
				</xsl:otherwise>
			</xsl:choose>
		</xsl:variable>
  ...
</xsl:template>

A. Description

Formats a list in which each item is denoted by a numeric label.

B. Pertinent Variables

D. DocBook Compliance and LaTeX Notes

The only DocBook attribute that is supported is numeration.

Applies templates. Uses a LaTeX \begin{enumerate} environment. The environment may be modified by the inclusion of a <?db2latex-custom-list> processing instruction preceding the listitems.

The spacing=“compact” attribute is recognised.

The numeration attribute is recognised.

E. Samples and Tests

test_book.pdf from test_book/test.xml, test_chemistry.pdf from test_chemistry/test.xml