summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl')
-rw-r--r--Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl63
1 files changed, 63 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl
new file mode 100644
index 00000000000..13783ed3743
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-web-companion/ch7/invlat1.xsl
@@ -0,0 +1,63 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
+ default-space="strip"
+ result-ns="">
+
+<xsl:template match="invitation">
+<xsl:text>\documentclass[]{article}
+\usepackage{invitation}
+\begin{document}
+</xsl:text>
+<xsl:apply-templates/>
+<xsl:text>\end{document}
+</xsl:text>
+</xsl:template>
+
+<xsl:template match="invitation/front">
+<xsl:text>\begin{Front}
+\To{</xsl:text>
+<xsl:value-of select="to"/>
+<xsl:text>}
+\Date{</xsl:text>
+<xsl:value-of select="date"/>
+<xsl:text>}
+\Where{</xsl:text>
+<xsl:value-of select="where"/>
+<xsl:text>}
+\Why{</xsl:text>
+<xsl:value-of select="why"/>
+<xsl:text>}
+\end{Front}
+</xsl:text>
+</xsl:template>
+
+<xsl:template match="invitation/body">
+<xsl:text>\begin{Body}
+</xsl:text>
+ <xsl:apply-templates/>
+<xsl:text>\end{Body}
+</xsl:text>
+</xsl:template>
+
+<xsl:template match="invitation/body/par">
+<xsl:text>\par</xsl:text>
+<xsl:apply-templates/>
+</xsl:template>
+
+<xsl:template match="invitation/body/par/emph">
+<xsl:text>\emph{</xsl:text>
+<xsl:apply-templates/>
+<xsl:text>}</xsl:text>
+</xsl:template>
+
+<xsl:template match="invitation/back">
+<xsl:text>\begin{Back}
+\Signature{</xsl:text>
+<xsl:value-of select="signature"/>
+<xsl:text>}
+\end{Back}
+</xsl:text>
+</xsl:template>
+
+</xsl:stylesheet>
+