diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/xslexa1.xsl')
-rw-r--r-- | Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/xslexa1.xsl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/xslexa1.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/xslexa1.xsl new file mode 100644 index 00000000000..9a9338b86c9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/xslexa1.xsl @@ -0,0 +1,20 @@ +<?xml version='1.0'?> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/XSL/Format/1.0"> + <xsl:template match="/"> + <fo:basic-page-sequence font-family="Helvetica" font-size="10pt" > + <xsl:apply-templates/> + </fo:basic-page-sequence> + </xsl:template> + <xsl:template match="par"> + <fo:block indent-start="10pt" space-before="12pt"> + <xsl:apply-templates/> + </fo:block> + </xsl:template> + <xsl:template match="emph"> + <fo:inline-sequence font-style="italic"> + <xsl:apply-templates/> + </fo:inline-sequence> + </xsl:template> +</xsl:stylesheet> |