diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-08-12 18:22:39 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-08-12 18:22:39 +0000 |
commit | e6c55529c9724ddb15db60fea72aa376fbcd5d7a (patch) | |
tree | b74c26742f73fa8b35b3c52eb700da161d592bd9 /docs/docbook/xslt/db2latex/citation.mod.xsl | |
parent | 8f3dd1e397f8f532a232166aa8b840854ae74fb5 (diff) | |
download | samba-e6c55529c9724ddb15db60fea72aa376fbcd5d7a.tar.gz samba-e6c55529c9724ddb15db60fea72aa376fbcd5d7a.tar.xz samba-e6c55529c9724ddb15db60fea72aa376fbcd5d7a.zip |
More fixes
(This used to be commit ec02b2cfa4d913c91dd78bc1b2bdb02d7d560c59)
Diffstat (limited to 'docs/docbook/xslt/db2latex/citation.mod.xsl')
-rw-r--r-- | docs/docbook/xslt/db2latex/citation.mod.xsl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/docbook/xslt/db2latex/citation.mod.xsl b/docs/docbook/xslt/db2latex/citation.mod.xsl index 46c69af0ebb..4ab82411a8b 100644 --- a/docs/docbook/xslt/db2latex/citation.mod.xsl +++ b/docs/docbook/xslt/db2latex/citation.mod.xsl @@ -1,6 +1,8 @@ <?xml version='1.0'?> <!--############################################################################# +| $Id: citation.mod.xsl,v 1.1.2.3 2003/08/12 18:22:39 jelmer Exp $ |- ############################################################################# +| $Author: jelmer $ | | PURPOSE: + ############################################################################## --> @@ -16,6 +18,7 @@ <doc:reference id="citation" xmlns=""> <referenceinfo> <releaseinfo role="meta"> + $Id: citation.mod.xsl,v 1.1.2.3 2003/08/12 18:22:39 jelmer Exp $ </releaseinfo> <authorgroup> <author> <firstname>Ramon</firstname> <surname>Casellas</surname> </author> @@ -53,9 +56,9 @@ <xsl:template match="citation"> <!-- todo: biblio-citation-check --> - <xsl:text>\docbooktolatexcite{</xsl:text> - <xsl:value-of select="."/> - <xsl:text>}{}</xsl:text> + <xsl:text>\cite{</xsl:text> + <xsl:apply-templates/> + <xsl:text>}</xsl:text> </xsl:template> </xsl:stylesheet> |