Showing:

Documentation
Parameters
References
Overriding
Included from
Source
Stylesheet tei-templates.xsl
Documentation

Description

TEI stylesheet for converting Word docx files to TEI

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

Author: See AUTHORS

Id: $Id: docx-tei.xsl 6820 2009-10-10 20:03:31Z rahtz $

Copyright: 2008, TEI Consortium

Included from
Template create-tei-header
Documentation

Description

simple teiHeader. For a more sophisticated header, think about overriding this template
Namespace No namespace
References
Overriding
Import precedence 16
Source
<xsl:template name="create-tei-header">
  <teiHeader>
    <fileDesc>
      <titleStmt>
        <title>
          <xsl:call-template name="getDocTitle"/>
        </title>
        <author>
          <xsl:call-template name="getDocAuthor"/>
        </author>
      </titleStmt>
      <editionStmt>
        <edition>
          <date>
            <xsl:call-template name="getDocDate"/>
          </date>
        </edition>
      </editionStmt>
      <publicationStmt>
        <p>
        </p>
      </publicationStmt>
      <sourceDesc>
        <p>Converted from a Word document </p>
      </sourceDesc>
    </fileDesc>
    <encodingDesc>
      <xsl:call-template name="generateAppInfo"/>
    </encodingDesc>
    <revisionDesc>
      <change>
        <date>
          <xsl:text>$LastChangedDate: </xsl:text>
          <xsl:value-of select="teidocx:whatsTheDate()"/>
          <xsl:text>$</xsl:text>
        </date>
        <respStmt>
          <name>
            <xsl:call-template name="getDocAuthor"/>
          </name>
        </respStmt>
      </change>
    </revisionDesc>
  </teiHeader>
</xsl:template>
Stylesheet location ../../../docx/from/templates/tei-templates.xsl
Template generate-section-heading
Documentation

Description

generates a section heading. If you need something specific, feel free to overwrite this template
Namespace No namespace
Overriding
Parameters
QName Namespace
Style No namespace
Import precedence 16
Source
<xsl:template name="generate-section-heading">
  <xsl:param name="Style"/>
  <head>
    <xsl:apply-templates/>
  </head>
</xsl:template>
Stylesheet location ../../../docx/from/templates/tei-templates.xsl