Showing:

Documentation
Used by
References
Included from
Source
Stylesheet settings.xsl
Documentation

Description

TEI stylesheet for making Word docx files from TEI XML

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: settings.xsl 7952 2010-08-12 21:14:51Z rahtz $

Copyright: 2008, TEI Consortium

Included from
Stylesheet version 2.0
Template write-docxfile-settings
Documentation

Description

write: word/settings.xml
Namespace No namespace
Used by
Template write-docxfiles
References
Parameters debug; word-directory
Import precedence 12
Source
<xsl:template name="write-docxfile-settings">
  <xsl:if test="$debug='true'">
    <xsl:message>Writing out
      <xsl:value-of select="concat($word-directory,'/word/settings.xml')"/>
    </xsl:message>
  </xsl:if>
  <xsl:result-document href="{concat($word-directory,'/word/settings.xml')}" standalone="yes">
    <w:settings xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
      <w:zoom w:percent="100"/>
      <w:stylePaneSortMethod w:val="0000"/>
      <w:defaultTabStop w:val="720"/>
      <w:evenAndOddHeaders/>
      <w:characterSpacingControl w:val="doNotCompress"/>
      <w:footnotePr>
        <w:footnote w:id="-1"/>
        <w:footnote w:id="0"/>
      </w:footnotePr>
      <w:endnotePr>
        <w:endnote w:id="-1"/>
        <w:endnote w:id="0"/>
      </w:endnotePr>
      <w:compat/>
      <m:mathPr>
        <m:mathFont m:val="Cambria Math"/>
        <m:brkBin m:val="before"/>
        <m:brkBinSub m:val="--"/>
        <m:smallFrac/>
        <m:dispDef/>
        <m:lMargin m:val="432"/>
        <m:rMargin m:val="0"/>
        <m:defJc m:val="left"/>
        <m:wrapIndent m:val="1440"/>
        <m:intLim m:val="subSup"/>
        <m:naryLim m:val="undOvr"/>
      </m:mathPr>
      <w:attachedSchema w:val="ActionsPane3"/>
      <w:themeFontLang w:val="en-US"/>
      <w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
      <w:decimalSymbol w:val="."/>
      <w:listSeparator w:val=","/>
    </w:settings>
  </xsl:result-document>
</xsl:template>
Stylesheet location ../../../docx/to/docxfiles/settings.xsl