summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl')
-rw-r--r--Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl30
1 files changed, 30 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl
new file mode 100644
index 00000000000..988bb8f3d0d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-web-companion/ch7/xslexa1.xsl
@@ -0,0 +1,30 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
+ xmlns:fo="http://www.w3.org/XSL/Format/1.0"
+ result-ns="fo">
+ <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:template match='/'>
+ <fo:basic-page-sequence font-family="serif">
+ <fo:simple-page-master page-master-name='scrolling'/>
+ <fo:queue queue-name='body'>
+ <xsl:apply-templates/>
+ </fo:queue>
+ </fo:basic-page-sequence>
+</xsl:template>
+-->
+</xsl:stylesheet>