| |
---|
| | </common> |
---|
| | </template> |
---|
| | |
---|
| | |
---|
| | <!-- List items for non-definition lists. --> |
---|
| | <!-- |
---|
| | List items for non-definition lists. |
---|
| | |
---|
| | @label: A label that can be used for cross referencing. Any value can be used, as long as it's a legal identifier in both LaTeX and HTML. This is really only applicable to enumerated lists. |
---|
| | --> |
---|
| | <template name="list-item" match="item" mode="normal"> |
---|
| | <common formats="/latex/xelatex/"> |
---|
| | <xsl:text>\item </xsl:text> |
---|
| | <xsl:if test="@label"> |
---|
| | <xsl:text>\label{</xsl:text> |
---|
| | <xsl:value-of select="@label" /> |
---|
| | <xsl:text>}</xsl:text> |
---|
| | </xsl:if> |
---|
| | <xsl:apply-templates /> |
---|
| | <xsl:call-template name="newline-internal" /> |
---|
| | </common> |
---|
| | <common formats="/html/xhtml/"> |
---|
| |
---|
| | <!-- |
---|
| | Otherwise, insert <p> tags surrounding the item content so that the item spacing looks OK. |
---|
| | --> |
---|
| | <xsl:otherwise> |
---|
| | <li><p><xsl:apply-templates /></p></li> |
---|
| | <li> |
---|
| | <xsl:if test="@label"> |
---|
| | <xsl:element name="a"> |
---|
| | <xsl:attribute name="name"> |
---|
| | <xsl:value-of select="@label" /> |
---|
| | </xsl:attribute> |
---|
| | </xsl:element> |
---|
| | </xsl:if> |
---|
| | <p><xsl:apply-templates /></p> |
---|
| | </li> |
---|
| | </xsl:otherwise> |
---|
| | </xsl:choose> |
---|
| | </common> |
---|
| | </template> |
---|
| |
---|
|