Suggestions |
---|
Search:
|
Next:
member |
Previous:
generate.simplelist.horiz Up: Lists lists.mod.xsl |
generate.simplelist.vert — Process simplelist [2.0.9] elements with “vert” members [2.0.9]
<xsl:template match="simplelist|simplelist[@type='vert']" name="generate.simplelist.vert"> <xsl:param name="environment"> <xsl:choose> <xsl:when test="$latex.use.ltxtable='1' or $latex.use.longtable='1'"> <xsl:text>longtable</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>tabular</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:param> <xsl:param name="cols"> <xsl:choose> <xsl:when test="@columns"> <xsl:value-of select="@columns"/> </xsl:when> <xsl:otherwise>1</xsl:otherwise> </xsl:choose> </xsl:param> ... </xsl:template>
Formats a simple, comma-separated list for a simplelist [2.0.9] that has a type attribute that is either empty or equal to “vert”.