<!-- 
XSL stylesheet to format TEI XML documents to HTML

Many basic ideas and many details taken from the stylesheets
written by Sebastian Rahtz. I gratefully reproduce his copyright statement:

 Copyright 1999 Sebastian Rahtz/Oxford University  <sebastian.rahtz@oucs.ox.ac.uk>

 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and any associated documentation files (the
 ``Software''), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Software.
--> 
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<!-- 
Parameterization
****************
-->
<!-- temp rommel -->
<xsl:variable name="masterFile">masterFile</xsl:variable>

<!-- some filenames -->
<xsl:variable name="notesFile">notes.htm</xsl:variable>
<xsl:variable name="appFile">app.htm</xsl:variable>
<xsl:variable name="corrFile">corr.htm</xsl:variable>
<xsl:variable name="drukgeschFile">druk.htm</xsl:variable>

<!-- names of target frames -->
<xsl:variable name="rightFrame">rf</xsl:variable>
<xsl:variable name="leftFrame">lf</xsl:variable>

<!-- files which go into righthand frame -->
<xsl:variable name="rightFrameFiles">corr sv notes app</xsl:variable>

<!-- preferred witness for apparatus processing -->
<xsl:variable name="preferredWitness">A1</xsl:variable>

<!-- the CSS file which will be referenced in HTML files -->
<xsl:variable name="cssFile">tei.css</xsl:variable>


<!-- the name of a table of contents -->
<xsl:variable name="tocWords">Inhoudsopgave</xsl:variable>

<!-- the name of a sub table of contents -->
<xsl:variable name="subtocWords">Inhoudsopgave van dit hoofdstuk</xsl:variable>

</xsl:stylesheet>


