-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.xsl
50 lines (45 loc) · 1.85 KB
/
parameters.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="title">Tuwari list of glosses</xsl:variable>
<xsl:variable name="author"></xsl:variable>
<!--
| The latex "polyglossia" package defined typographic rules for some
| frequent languages. If some of the language used in the Lift
| document are defined in polyglossia, you can benefit from this
| definition to have it typesetted correctly. See
| http://tug.ctan.org/macros/xetex/latex/polyglossia/polyglossia.pdf
|. for a list of available languages
|
| In order to do so, for each language, you have to associate
| the polyglossia name with the abbreviation of the language used in
| the Lift document. For instance, for english, and considering that
| the Lift document used the "en" abbreviation, you may enter:
|
| english is automatically loaded and should be declared
| 'en' : 'english',
-->
<xsl:variable name="languages" select="
map {
'fr' : 'french',
'tpi' : 'french',
'tww' : 'tuwari'
}
"/>
<!--
| <entry key="analysis_language">en,english</entry>
| <entry key="analysis_language">fr,french</entry>
| <entry key="analysis_language">tpi,french</entry>
| <entry key="vernacular_language">tww,tuwari</entry>
| </xsl:variable>
-->
<!--
| Switch between anything and the empty string to include or exclude the corresponding material:
| For instance, the following will include a thematic dictionary:
| <xsl:variable name="makeThematicDictionary" select="'1'" />
| While the following will exclude it:
| <xsl:variable name="makeThematicDictionary" select="''" />
-->
<xsl:variable name="makeThematicDictionary" select="True" />
<xsl:variable name="makeListOfFigure" select="'1'" />
</xsl:stylesheet>