Newer
Older
XML / quick-reference.markdown
  1. # XML authoring framework quick reference
  2.  
  3. ## Basic formatting
  4.  
  5. ### Page elements (`basic-page-elements.xml`)
  6.  
  7. | Item | Element(s) |
  8. | ---- | ---------- |
  9. | horizontal rule | `<horizontal-rule>`, `<hrule>`, `<hr`> |
  10. | horizontal skip | `<horizontal-skip>`, `<hskip>` |
  11. | newline (markup) | `<newline-internal>` |
  12. | newline (output) | `<newline>`, `<line-break>`, `<br>` |
  13. | no page break | `<no-break>`, `<mbox>` |
  14. | page break | `<page-break>`, `<new-page>`, `<newpage>`, `<pagebreak>` |
  15. | paragraph | `<paragraph>`, `<para>`, `<p>`, `<P>` |
  16. | vertical skip | `<vertical-skip>`, `<vskip>` |
  17.  
  18. ### Text formatting and layout (`basic-text-formatting.xml`)
  19.  
  20. | Item | Element(s) |
  21. | ---- | ---------- |
  22. | bold face | `<bold>` |
  23. | center | `<center>`, `<centering>`, `<centre>`, `<centring>` |
  24. | emphasis | `<emph>`, `<em>` |
  25. | foreign word | `<foreign>` |
  26. | italics | `<italic>` |
  27. | strikethrough | `<strike-through>`, `<line-through>`, `<strikethrough>`, `<linethrough>` |
  28. | strong emphasis | `<strong>` |
  29. | term | `<term>` |
  30. | underline | `<underline>`, `<u>` |
  31.  
  32. ### Font size and style (`fonts.xml`)
  33.  
  34. | Item | Element(s) |
  35. | ---- | ---------- |
  36. | monospaced type | `<typewriter>`, `<monospace>`, `<tt>` |
  37. | sans-serif type | `<sans-serif>`, `<sans>`, `<ss>`, `<sf>` |
  38. | font family | `<font>`, `<typeface>` |
  39. | tiny font size | `<tiny>` (= `<smaller>` × 4, `\tiny`) |
  40. | script font size | `<scriptsize>` (= `<smaller>` × 3, `\scriptsize`) |
  41. | footnote font size | `<footnotesize>` (= `<smaller>` × 2, `\footnotesize`) |
  42. | small font size | `<small>` (= `<smaller>`, `\small`) |
  43. | large font size | `<large>` (= `<larger>`, `\large`) |
  44. | Large font size | `<Large>` (= `<larger>` × 2, `\Large`) |
  45. | LARGE font size | `<LARGE>` (= `<larger>` × 3, `\LARGE`) |
  46. | huge font size | `<huge>` (= `<larger>` × 4, `\huge`) |
  47. | Huge font size | `<Huge>` (= `<larger>` × 5, `\Huge`) |
  48. | superscript | `<superscript>` |
  49. | subscript | `<subscript>` |
  50.  
  51. ### Inline code and code blocks (`code-formatting.xml`)
  52.  
  53. | Item | Element(s) |
  54. | ---- | ---------- |
  55. | code (block) | `<code-block>` (also requires `<![CDATA[]]>`) |
  56. | code (inline) | `<code>` |
  57. | verbatim (block) | `<verbatim>`, `<verbatim-block>` |
  58. | verbatim (inline) | `<inline-verbatim>`, `<verb>` |
  59.  
  60. ## Bibliographies (`bibliography.xml`)
  61.  
  62. | Item | Element(s) |
  63. | ---- | ---------- |
  64. | bibliography | `<bibliography>` |
  65. | bibliography entry | `<item>` (inside `<bibliography>`) |
  66. | citation | `<cite>` |
  67. | cited item | `<item>` (inside `<cite>`) |
  68.  
  69. modules/build-date.xml: <template name="build-date-internal">
  70. modules/build-date.xml: <template name="build-date" match="build-date">
  71. modules/conditional-processing.xml: <template name="process-when-latex" match="process-when[ contains( @format, 'latex' ) ]">
  72. modules/conditional-processing.xml: <template name="process-when-html" match="process-when[ contains( @format, 'html' ) ]">
  73. modules/conditional-processing.xml: <template name="process-when-error" match="process-when[ not( @format ) ]">
  74. modules/cross-references.xml: <template name="reference" match="reference[@label]">
  75. modules/cross-references.xml: <template name="broken-reference" match="reference[not( @label )]">
  76. modules/cross-references.xml: <template name="section-reference" match="section" mode="reference">
  77. modules/cross-references.xml: <template name="figure-reference" match="figure" mode="reference">
  78. modules/cross-references.xml: <template name="table-reference" match="table" mode="reference">
  79. modules/cross-references.xml: <template name="exercise-reference" match="exercise" mode="reference">
  80. modules/cross-references.xml: <template name="item-page-reference" match="section|figure|table" mode="page-reference">
  81. modules/cross-references.xml: <template name="page" match="page[@label]">
  82. modules/cross-references.xml: <template name="broken-page" match="page[not( @label )]">
  83. modules/cross-references.xml: <template name="direct-page-reference" match="page[@label]" mode="reference">
  84. modules/emoticons.xml: <template name="emoticon" match="emoticon|smiley">
  85. modules/emoticons.xml: <template name="emoticon-strip" match="emoticon|smiley" mode="strip">
  86. modules/floaters.xml: <template name="figure" match="figure">
  87. modules/floaters.xml: <template name="table" match="table">
  88. modules/floaters.xml: <template name="multipart-table" match="table[count(part) gt 0]">
  89. modules/floaters.xml: <template name="figure-caption" match="figure/caption">
  90. modules/floaters.xml: <template name="table-caption" match="table/caption">
  91. modules/footnotes.xml: <template name="footnote" match="footnote">
  92. modules/footnotes.xml: <template name="footnote-list" match="footnote" mode="list">
  93. modules/global-elements.xml: <template name="SubjectCode" match="SubjectCode">
  94. modules/global-elements.xml: <template name="SubjectCode-strip" match="SubjectCode" mode="strip">
  95. modules/global-elements.xml: <template name="PaperNumber" match="PaperNumber">
  96. modules/global-elements.xml: <template name="PaperNumber-strip" match="PaperNumber" mode="strip">
  97. modules/global-elements.xml: <template name="PaperCode" match="PaperCode">
  98. modules/global-elements.xml: <template name="PaperCode-strip" match="PaperCode" mode="strip">
  99. modules/global-elements.xml: <template name="PaperYear" match="PaperYear">
  100. modules/global-elements.xml: <template name="PaperYear-strip" match="PaperYear" mode="strip">
  101. modules/global-elements.xml: <template name="PaperPeriod" match="PaperPeriod">
  102. modules/global-elements.xml: <template name="PaperPeriod-strip" match="PaperPeriod" mode="strip">
  103. modules/global-elements.xml: <template name="OracleServer" match="OracleServer">
  104. modules/global-elements.xml: <template name="OracleServer-strip" match="OracleServer" mode="strip">
  105. modules/global-elements.xml: <template name="OracleServerRelease" match="OracleServerRelease">
  106. modules/global-elements.xml: <template name="OracleServerRelease-strip" match="OracleServerRelease" mode="strip">
  107. modules/global-elements.xml: <template name="OracleServerVersion" match="OracleServerVersion">
  108. modules/global-elements.xml: <template name="OracleServerVersion-strip" match="OracleServerVersion" mode="strip">
  109. modules/global-elements.xml: <template name="Blackboard" match="Blackboard">
  110. modules/global-elements.xml: <template name="Blackboard-strip" match="Blackboard" mode="strip">
  111. modules/global-elements.xml: <template name="DueDate" match="DueDate">
  112. modules/global-elements.xml: <template name="DueDate-strip" match="DueDate" mode="strip">
  113. modules/greek-characters.xml: <template name="alpha" match="alpha|greek-small-letter-alpha">
  114. modules/greek-characters.xml: <template name="alpha-strip" match="alpha|greek-small-letter-alpha" mode="strip">
  115. modules/greek-characters.xml: <template name="capital-alpha" match="capital-alpha|greek-capital-letter-alpha">
  116. modules/greek-characters.xml: <template name="capital-alpha-stip" match="capital-alpha|greek-capital-letter-alpha" mode="strip">
  117. modules/greek-characters.xml: <template name="beta" match="beta|greek-small-letter-beta">
  118. modules/greek-characters.xml: <template name="beta-strip" match="beta|greek-small-letter-beta" mode="strip">
  119. modules/greek-characters.xml: <template name="capital-beta" match="capital-beta|greek-capital-letter-beta">
  120. modules/greek-characters.xml: <template name="capital-beta-stip" match="capital-beta|greek-capital-letter-beta" mode="strip">
  121. modules/greek-characters.xml: <template name="gamma" match="gamma|greek-small-letter-gamma">
  122. modules/greek-characters.xml: <template name="gamma-strip" match="gamma|greek-small-letter-gamma" mode="strip">
  123. modules/greek-characters.xml: <template name="capital-gamma" match="capital-gamma|greek-capital-letter-gamma">
  124. modules/greek-characters.xml: <template name="capital-gamma-stip" match="capital-gamma|greek-capital-letter-gamma" mode="strip">
  125. modules/greek-characters.xml: <template name="delta" match="delta|greek-small-letter-delta">
  126. modules/greek-characters.xml: <template name="delta-strip" match="delta|greek-small-letter-delta" mode="strip">
  127. modules/greek-characters.xml: <template name="capital-delta" match="capital-delta|greek-capital-letter-delta">
  128. modules/greek-characters.xml: <template name="capital-delta-stip" match="capital-delta|greek-capital-letter-delta" mode="strip">
  129. modules/greek-characters.xml: <template name="epsilon" match="epsilon|greek-small-letter-epsilon">
  130. modules/greek-characters.xml: <template name="epsilon-strip" match="epsilon|greek-small-letter-epsilon" mode="strip">
  131. modules/greek-characters.xml: <template name="capital-epsilon" match="capital-epsilon|greek-capital-letter-epsilon">
  132. modules/greek-characters.xml: <template name="capital-epsilon-stip" match="capital-epsilon|greek-capital-letter-epsilon" mode="strip">
  133. modules/greek-characters.xml: <template name="zeta" match="zeta|greek-small-letter-zeta">
  134. modules/greek-characters.xml: <template name="zeta-strip" match="zeta|greek-small-letter-zeta" mode="strip">
  135. modules/greek-characters.xml: <template name="capital-zeta" match="capital-zeta|greek-capital-letter-zeta">
  136. modules/greek-characters.xml: <template name="capital-zeta-stip" match="capital-zeta|greek-capital-letter-zeta" mode="strip">
  137. modules/greek-characters.xml: <template name="eta" match="eta|greek-small-letter-eta">
  138. modules/greek-characters.xml: <template name="eta-strip" match="eta|greek-small-letter-eta" mode="strip">
  139. modules/greek-characters.xml: <template name="capital-eta" match="capital-eta|greek-capital-letter-eta">
  140. modules/greek-characters.xml: <template name="capital-eta-stip" match="capital-eta|greek-capital-letter-eta" mode="strip">
  141. modules/greek-characters.xml: <template name="theta" match="theta|greek-small-letter-theta">
  142. modules/greek-characters.xml: <template name="theta-strip" match="theta|greek-small-letter-theta" mode="strip">
  143. modules/greek-characters.xml: <template name="capital-theta" match="capital-theta|greek-capital-letter-theta">
  144. modules/greek-characters.xml: <template name="capital-theta-stip" match="capital-theta|greek-capital-letter-theta" mode="strip">
  145. modules/greek-characters.xml: <template name="iota" match="iota|greek-small-letter-iota">
  146. modules/greek-characters.xml: <template name="iota-strip" match="iota|greek-small-letter-iota" mode="strip">
  147. modules/greek-characters.xml: <template name="capital-iota" match="capital-iota|greek-capital-letter-iota">
  148. modules/greek-characters.xml: <template name="capital-iota-stip" match="capital-iota|greek-capital-letter-iota" mode="strip">
  149. modules/greek-characters.xml: <template name="kappa" match="kappa|greek-small-letter-kappa">
  150. modules/greek-characters.xml: <template name="kappa-strip" match="kappa|greek-small-letter-kappa" mode="strip">
  151. modules/greek-characters.xml: <template name="capital-kappa" match="capital-kappa|greek-capital-letter-kappa">
  152. modules/greek-characters.xml: <template name="capital-kappa-stip" match="capital-kappa|greek-capital-letter-kappa" mode="strip">
  153. modules/greek-characters.xml: <template name="lambda" match="lambda|greek-small-letter-lambda">
  154. modules/greek-characters.xml: <template name="lambda-strip" match="lambda|greek-small-letter-lambda" mode="strip">
  155. modules/greek-characters.xml: <template name="capital-lambda" match="capital-lambda|greek-capital-letter-lambda">
  156. modules/greek-characters.xml: <template name="capital-lambda-stip" match="capital-lambda|greek-capital-letter-lambda" mode="strip">
  157. modules/greek-characters.xml: <template name="mu" match="mu|greek-small-letter-mu">
  158. modules/greek-characters.xml: <template name="mu-strip" match="mu|greek-small-letter-mu" mode="strip">
  159. modules/greek-characters.xml: <template name="capital-mu" match="capital-mu|greek-capital-letter-mu">
  160. modules/greek-characters.xml: <template name="capital-mu-stip" match="capital-mu|greek-capital-letter-mu" mode="strip">
  161. modules/greek-characters.xml: <template name="nu" match="nu|greek-small-letter-nu">
  162. modules/greek-characters.xml: <template name="nu-strip" match="nu|greek-small-letter-nu" mode="strip">
  163. modules/greek-characters.xml: <template name="capital-nu" match="capital-nu|greek-capital-letter-nu">
  164. modules/greek-characters.xml: <template name="capital-nu-stip" match="capital-nu|greek-capital-letter-nu" mode="strip">
  165. modules/greek-characters.xml: <template name="xi" match="xi|greek-small-letter-xi">
  166. modules/greek-characters.xml: <template name="xi-strip" match="xi|greek-small-letter-xi" mode="strip">
  167. modules/greek-characters.xml: <template name="capital-xi" match="capital-xi|greek-capital-letter-xi">
  168. modules/greek-characters.xml: <template name="capital-xi-stip" match="capital-xi|greek-capital-letter-xi" mode="strip">
  169. modules/greek-characters.xml: <template name="omicron" match="omicron|greek-small-letter-omicron">
  170. modules/greek-characters.xml: <template name="omicron-strip" match="omicron|greek-small-letter-omicron" mode="strip">
  171. modules/greek-characters.xml: <template name="capital-omicron" match="capital-omicron|greek-capital-letter-omicron">
  172. modules/greek-characters.xml: <template name="capital-omicron-stip" match="capital-omicron|greek-capital-letter-omicron" mode="strip">
  173. modules/greek-characters.xml: <template name="pi" match="pi|greek-small-letter-pi">
  174. modules/greek-characters.xml: <template name="pi-strip" match="pi|greek-small-letter-pi" mode="strip">
  175. modules/greek-characters.xml: <template name="capital-pi" match="capital-pi|greek-capital-letter-pi">
  176. modules/greek-characters.xml: <template name="capital-pi-stip" match="capital-pi|greek-capital-letter-pi" mode="strip">
  177. modules/greek-characters.xml: <template name="rho" match="rho|greek-small-letter-rho">
  178. modules/greek-characters.xml: <template name="rho-strip" match="rho|greek-small-letter-rho" mode="strip">
  179. modules/greek-characters.xml: <template name="capital-rho" match="capital-rho|greek-capital-letter-rho">
  180. modules/greek-characters.xml: <template name="capital-rho-stip" match="capital-rho|greek-capital-letter-rho" mode="strip">
  181. modules/greek-characters.xml: <template name="sigma" match="sigma|greek-small-letter-sigma">
  182. modules/greek-characters.xml: <template name="sigma-strip" match="sigma|greek-small-letter-sigma" mode="strip">
  183. modules/greek-characters.xml: <template name="capital-sigma" match="capital-sigma|greek-capital-letter-sigma">
  184. modules/greek-characters.xml: <template name="capital-sigma-stip" match="capital-sigma|greek-capital-letter-sigma" mode="strip">
  185. modules/greek-characters.xml: <template name="tau" match="tau|greek-small-letter-tau">
  186. modules/greek-characters.xml: <template name="tau-strip" match="tau|greek-small-letter-tau" mode="strip">
  187. modules/greek-characters.xml: <template name="capital-tau" match="capital-tau|greek-capital-letter-tau">
  188. modules/greek-characters.xml: <template name="capital-tau-stip" match="capital-tau|greek-capital-letter-tau" mode="strip">
  189. modules/greek-characters.xml: <template name="upsilon" match="upsilon|greek-small-letter-upsilon">
  190. modules/greek-characters.xml: <template name="upsilon-strip" match="upsilon|greek-small-letter-upsilon" mode="strip">
  191. modules/greek-characters.xml: <template name="capital-upsilon" match="capital-upsilon|greek-capital-letter-upsilon">
  192. modules/greek-characters.xml: <template name="capital-upsilon-stip" match="capital-upsilon|greek-capital-letter-upsilon" mode="strip">
  193. modules/greek-characters.xml: <template name="phi" match="phi|greek-phi-symbol">
  194. modules/greek-characters.xml: <template name="phi-strip" match="phi|greek-phi-symbol" mode="strip">
  195. modules/greek-characters.xml: <template name="capital-phi" match="capital-phi|greek-capital-letter-phi">
  196. modules/greek-characters.xml: <template name="capital-phi-stip" match="capital-phi|greek-capital-letter-phi" mode="strip">
  197. modules/greek-characters.xml: <template name="chi" match="chi|greek-small-letter-chi">
  198. modules/greek-characters.xml: <template name="chi-strip" match="chi|greek-small-letter-chi" mode="strip">
  199. modules/greek-characters.xml: <template name="capital-chi" match="capital-chi|greek-capital-letter-chi">
  200. modules/greek-characters.xml: <template name="capital-chi-stip" match="capital-chi|greek-capital-letter-chi" mode="strip">
  201. modules/greek-characters.xml: <template name="psi" match="psi|greek-small-letter-psi">
  202. modules/greek-characters.xml: <template name="psi-strip" match="psi|greek-small-letter-psi" mode="strip">
  203. modules/greek-characters.xml: <template name="capital-psi" match="capital-psi|greek-capital-letter-psi">
  204. modules/greek-characters.xml: <template name="capital-psi-stip" match="capital-psi|greek-capital-letter-psi" mode="strip">
  205. modules/greek-characters.xml: <template name="omega" match="omega|greek-small-letter-omega">
  206. modules/greek-characters.xml: <template name="omega-strip" match="omega|greek-small-letter-omega" mode="strip">
  207. modules/greek-characters.xml: <template name="capital-omega" match="capital-omega|greek-capital-letter-omega">
  208. modules/greek-characters.xml: <template name="capital-omega-stip" match="capital-omega|greek-capital-letter-omega" mode="strip">
  209. modules/hyperlinks.xml: <template name="hyperlink-label" match="hyperlink[@label and node()]">
  210. modules/hyperlinks.xml: <template name="hyperlink-url" match="hyperlink[@url and node()]">
  211. modules/hyperlinks.xml: <template name="empty-hyperlink-url" match="hyperlink[@url and not( node() )]">
  212. modules/hyperlinks.xml: <template name="empty-hyperlink-label" match="hyperlink[@label and not( node() )]">
  213. modules/hyperlinks.xml: <template name="hyperlink-bogus" match="hyperlink[@url and @label]" priority="2">
  214. modules/hyperlinks.xml: <template name="hyperlink-internal" match="hyperlink" mode="hyperlink-internal">
  215. modules/hyperlinks.xml: <template name="empty-hyperlink-url-internal" match="hyperlink" mode="empty-hyperlink-internal">
  216. modules/hyperlinks.xml: <template name="url" match="url|uri|email|e-mail|email-address|e-mail-address">
  217. modules/images.xml: <template name="latex-image" match="image" mode="latex">
  218. modules/images.xml: <template name="normal-image" match="image[count(provide-large-version) = 0]">
  219. modules/images.xml: <template name="zoomable-image" match="image[count(provide-large-version) != 0]">
  220. modules/inclusions.xml: <template name="include-document" match="include-document">
  221. modules/inclusions.xml: <template name="include-xml" match="include-document[@type='xml']">
  222. modules/latex.xml: <template name="environment" match="environment" />
  223. modules/latex.xml: <template name="latex-package" match="latex-packages/package">
  224. modules/latex.xml: <template name="latex-command" match="latex-commands/command">
  225. modules/latex.xml: <template name="latex-hyphenation" match="latex-commands/hyphenation">
  226. modules/latex.xml: <template name="latex-documentclass" match="latex-documentclass|documentclass">
  227. modules/latex.xml: <template name="latex-document-options" match="latex-document-options">
  228. modules/latex.xml: <template name="tabular-column-separator">
  229. modules/lists.xml: <template name="itemised-list" match="itemised-list|itemize|unordered-list|bulleted-list|bullet-list|bullet-points|UL|ul">
  230. modules/lists.xml: <template name="enumerated-list" match="enumerated-list|enumerate|ordered-list|numbered-list|question-list|OL|ol">
  231. modules/lists.xml: <template name="definition-list" match="definition-list|description-list|DL|dl">
  232. modules/lists.xml: <template name="list-item" match="item" mode="normal">
  233. modules/lists.xml: <template name="enumerated-item-value" match="item[@value]" mode="enumerated-list">
  234. modules/lists.xml: <template name="enumerated-item" match="item[not( @value )]" mode="enumerated-list">
  235. modules/lists.xml: <template name="definition-item" match="item" mode="definition-list">
  236. modules/lists.xml: <template name="keyword" match="item/keyword|item/term|item/topic|item/DT|item/dt">
  237. modules/lists.xml: <template name="definition" match="item/definition|item/description|item/discourse|item/DD|item/dd">
  238. modules/mathematical-symbols.xml: <template name="plus-operator" match="plus|plus-sign">
  239. modules/mathematical-symbols.xml: <template name="times-operator" match="times|multiply|multiplication|multiplication-sign">
  240. modules/mathematical-symbols.xml: <template name="minus-operator" match="minus|subtract|minus-sign">
  241. modules/mathematical-symbols.xml: <template name="divide-operator" match="divide|division|division-slash">
  242. modules/mathematical-symbols.xml: <template name="equals-operator" match="equals|eq|equals-sign|equality">
  243. modules/mathematical-symbols.xml: <template name="not-equals-operator" match="not-equals|ne|inequality|not-equal-to">
  244. modules/mathematical-symbols.xml: <template name="approximately-equals-operator" match="approximately-equals|approximately-equal-to|approx|almost-equal-to">
  245. modules/mathematical-symbols.xml: <template name="greater-than-operator" match="greater-than|gt|greater-than-sign">
  246. modules/mathematical-symbols.xml: <template name="greater-equals-operator" match="greater-equals|ge|greater-than-or-equal-to">
  247. modules/mathematical-symbols.xml: <template name="less-than-operator" match="less-than|lt|less-than-sign">
  248. modules/mathematical-symbols.xml: <template name="less-equals-operator" match="less-equals|le|less-than-or-equal-to">
  249. modules/mathematical-symbols.xml: <template name="empty-set-sign" match="empty-set-sign|empty-set|null">
  250. modules/mathematical-symbols.xml: <template name="empty-set-sign-strip" match="empty-set-sign|empty-set|null" mode="strip">
  251. modules/mathematical-symbols.xml: <template name="element-sign" match="element-sign|element|element-of|is-element-of|is-an-element-of">
  252. modules/mathematical-symbols.xml: <template name="element-sign-strip" match="element-sign|element|element-of|is-element-of|is-an-element-of" mode="strip">
  253. modules/mathematical-symbols.xml: <template name="not-element-sign" match="not-element-sign|not-element|not-element-of|is-not-element-of|is-not-an-element-of|not-an-element-of">
  254. modules/mathematical-symbols.xml: <template name="not-element-sign-strip" match="not-element-sign|not-element|not-element-of|is-not-element-of|is-not-an-element-of|not-an-element-of" mode="strip">
  255. modules/mathematical-symbols.xml: <template name="intersect-operator" match="intersect-operator|intersect|intersection|cap">
  256. modules/mathematical-symbols.xml: <template name="intersect-operator-strip" match="intersect-operator|intersect|intersection|cap" mode="strip">
  257. modules/mathematical-symbols.xml: <template name="union-operator" match="union-operator|union|cup">
  258. modules/mathematical-symbols.xml: <template name="union-operator-strip" match="union-operator|union|cup" mode="strip">
  259. modules/mathematical-symbols.xml: <template name="strict-subset-sign" match="subset-sign|subset|subset-of|is-subset-of|is-a-subset-of|strict-subset">
  260. modules/mathematical-symbols.xml: <template name="strict-subset-sign-strip" match="subset-sign|subset|subset-of|is-subset-of|is-a-subset-of|strict-subset" mode="strip">
  261. modules/mathematical-symbols.xml: <template name="strict-superset-sign" match="superset-sign|superset|superset-of|is-superset-of|is-a-superset-of">
  262. modules/mathematical-symbols.xml: <template name="strict-superset-sign-strip" match="superset-sign|superset|superset-of|is-superset-of|is-a-superset-of" mode="strip">
  263. modules/mathematical-symbols.xml: <template name="inclusive-subset-sign" match="inclusive-subset|subset-or-equal|subset-of-or-equal-to|is-subset-of-or-equal-to|is-a-subset-of-or-equal-to">
  264. modules/mathematical-symbols.xml: <template name="inclusive-subset-sign-strip" match="inclusive-subset|subset-or-equal|subset-of-or-equal-to|is-subset-of-or-equal-to|is-a-subset-of-or-equal-to" mode="strip">
  265. modules/mathematical-symbols.xml: <template name="inclusive-superset-sign" match="inclusive-superset|superset-or-equal|superset-of-or-equal-to|is-superset-of-or-equal-to|is-a-superset-of-or-equal-to">
  266. modules/mathematical-symbols.xml: <template name="inclusive-superset-sign-strip" match="inclusive-superset|superset-or-equal|superset-of-or-equal-to|is-superset-of-or-equal-to|is-a-superset-of-or-equal-to" mode="strip">
  267. modules/mathematical-symbols.xml: <template name="logical-not-operator" match="logical-not-operator|logical-negation-operator|logical-negation|logical-not|not|negation|neg|not-sign">
  268. modules/mathematical-symbols.xml: <template name="logical-not-operator-strip" match="logical-not-operator|logical-negation-operator|logical-negation|logical-not|not|negation|neg|not-sign" mode="strip">
  269. modules/mathematical-symbols.xml: <template name="logical-and-operator" match="logical-and-operator|logical-and|and|and-operator|hat|wedge">
  270. modules/mathematical-symbols.xml: <template name="logical-and-operator-strip" match="logical-and-operator|logical-and|and|and-operator|hat|wedge" mode="strip">
  271. modules/mathematical-symbols.xml: <template name="logical-or-operator" match="logical-or-operator|logical-or|or|or-operator|vee">
  272. modules/mathematical-symbols.xml: <template name="logical-or-operator-strip" match="logical-or-operator|logical-or|or|or-operator|vee" mode="strip">
  273. modules/mathematical-symbols.xml: <template name="right-arrow" match="right-arrow|rightarrow|implies|rarr|rarrow|rightwards-arrow">
  274. modules/mathematical-symbols.xml: <template name="left-arrow" match="left-arrow|leftarrow|larr|larrow|leftwards-arrow">
  275. modules/maths.xml: <template name="math-inline" match="math|math[@style='inline']">
  276. modules/maths.xml: <template name="math-display" match="math[@style='display']">
  277. modules/maths.xml: <template name="equation-array" match="equation-array">
  278. modules/maths.xml: <template match="equation-array/row">
  279. modules/maths.xml: <template name="math-text" match="text">
  280. modules/maths.xml: <template name="calligraphic-text" match="calligraphic|cursive">
  281. modules/maths.xml: <template name="digit-group-separator" match="digit-group-separator|digitsep">
  282. modules/maths.xml: <template name="superscript-math" match="math//superscript">
  283. modules/maths.xml: <template name="subscript-math" match="math//subscript">
  284. modules/maths.xml: <template name="log-like-function" match="function">
  285. modules/maths.xml: <template name="math-variable" match="variable|var">
  286. modules/maths.xml: <template name="math-fraction" match="fraction">
  287. modules/menus.xml: <template name="menu-separator" match="menu-separator|menusep|menu/separator">
  288. modules/menus.xml: <template name="menu-separator-strip" match="menu-separator|menusep|menu/separator" mode="strip">
  289. modules/menus.xml: <template name="menu-item" match="menu/item">
  290. modules/meta-elements.xml: <template name="omit" match="omit" />
  291. modules/meta-elements.xml: <template name="comment" match="comment">
  292. modules/meta-elements.xml: <template name="todo" match="todo|to-do|incomplete|check">
  293. modules/miscellaneous-symbols.xml: <template name="sharp-sign" match="sharp|hash|number-sign">
  294. modules/miscellaneous-symbols.xml: <template name="sharp-sign-strip" match="sharp|hash|number-sign" mode="strip">
  295. modules/miscellaneous-symbols.xml: <template name="dollar" match="dollar|dollar-sign">
  296. modules/miscellaneous-symbols.xml: <template name="dollar-strip" match="dollar|dollar-sign" mode="strip">
  297. modules/miscellaneous-symbols.xml: <template name="percent-sign" match="percent-sign|percentage-sign|percent">
  298. modules/miscellaneous-symbols.xml: <template name="percent-sign-strip" match="percent-sign|percentage-sign|percent" mode="strip">
  299. modules/miscellaneous-symbols.xml: <template name="ampersand" match="ampersand">
  300. modules/miscellaneous-symbols.xml: <template name="ampersand-strip" match="ampersand" mode="strip">
  301. modules/miscellaneous-symbols.xml: <template name="backslash" match="backslash">
  302. modules/miscellaneous-symbols.xml: <template name="backslash-strip" match="backslash" mode="strip">
  303. modules/miscellaneous-symbols.xml: <template name="underscore" match="underscore|low-line">
  304. modules/miscellaneous-symbols.xml: <template name="underscore-strip" match="underscore|low-line" mode="strip">
  305. modules/miscellaneous-symbols.xml: <template name="left-curly-bracket" match="left-curly-bracket|left-curly-brace|left-brace">
  306. modules/miscellaneous-symbols.xml: <template name="left-curly-bracket-strip" match="left-curly-bracket|left-curly-brace|left-brace" mode="strip">
  307. modules/miscellaneous-symbols.xml: <template name="right-curly-bracket" match="right-curly-bracket|right-curly-brace|right-brace">
  308. modules/miscellaneous-symbols.xml: <template name="right-curly-bracket-strip" match="right-curly-bracket|right-curly-brace|right-brace" mode="strip">
  309. modules/miscellaneous-symbols.xml: <template name="degree-sign" match="degree-sign|degrees">
  310. modules/miscellaneous-symbols.xml: <template name="degree-sign-strip" match="degree-sign|degrees" mode="strip">
  311. modules/miscellaneous-symbols.xml: <template name="section-sign" match="section-sign">
  312. modules/miscellaneous-symbols.xml: <template name="section-sign-strip" match="section-sign" mode="strip">
  313. modules/miscellaneous-symbols.xml: <template name="copyright-sign" match="copyright-sign">
  314. modules/miscellaneous-symbols.xml: <template name="copyright-sign-strip" match="copyright-sign" mode="strip">
  315. modules/miscellaneous-symbols.xml: <template name="paragraph-sign" match="paragraph-sign|pilcrow|pilcrow-sign">
  316. modules/miscellaneous-symbols.xml: <template name="paragraph-sign-strip" match="paragraph-sign|pilcrow|pilcrow-sign" mode="strip">
  317. modules/miscellaneous-symbols.xml: <template name="figure-dash" match="figure-dash|number-dash">
  318. modules/miscellaneous-symbols.xml: <template name="figure-dash-strip" match="figure-dash|number-dash" mode="strip">
  319. modules/miscellaneous-symbols.xml: <template name="endash" match="endash|en-dash|ndash|n-dash">
  320. modules/miscellaneous-symbols.xml: <template name="endash-strip" match="endash|en-dash|ndash|n-dash" mode="strip">
  321. modules/miscellaneous-symbols.xml: <template name="emdash" match="emdash|em-dash|mdash|m-dash">
  322. modules/miscellaneous-symbols.xml: <template name="emdash-strip" match="emdash|em-dash|mdash|m-dash" mode="strip">
  323. modules/miscellaneous-symbols.xml: <template name="apostrophe" match="apostrophe|right-single-quotation-mark">
  324. modules/miscellaneous-symbols.xml: <template name="apostrophe-strip" match="apostrophe|right-single-quotation-mark" mode="strip">
  325. modules/miscellaneous-symbols.xml: <template name="dagger" match="dagger|dag">
  326. modules/miscellaneous-symbols.xml: <template name="dagger-strip" match="dagger|dag" mode="strip">
  327. modules/miscellaneous-symbols.xml: <template name="double-dagger" match="double-dagger|ddagger|ddag">
  328. modules/miscellaneous-symbols.xml: <template name="double-dagger-strip" match="double-dagger|ddagger|ddag" mode="strip">
  329. modules/miscellaneous-symbols.xml: <template name="ellipsis-sign" match="ellipsis-sign|etc|ellipsis|dots|horizontal-ellipsis">
  330. modules/miscellaneous-symbols.xml: <template name="ellipsis-sign-strip" match="ellipsis-sign|etc|ellipsis|dots|horizontal-ellipsis" mode="strip">
  331. modules/miscellaneous-symbols.xml: <template name="trademark-sign" match="trademark-sign|trademark|tm|trade-mark-sign">
  332. modules/miscellaneous-symbols.xml: <template name="trademark-sign-strip" match="trademark-sign|trademark|tm|trade-mark-sign" mode="strip">
  333. modules/miscellaneous-symbols.xml: <template name="LaTeX" match="LaTeX|latex">
  334. modules/miscellaneous-symbols.xml: <template name="LaTeX-strip" match="LaTeX|latex" mode="strip">
  335. modules/multi-column.xml: <template name="multi-column" match="multi-column">
  336. modules/multi-column.xml: <template name="multi-column-column" match="multi-column/column">
  337. modules/native-code.xml: <template name="raw-latex" match="raw-code[@format = 'latex']|raw-latex">
  338. modules/native-code.xml: <template name="raw-html" match="raw-code[@format = 'html']|raw-html">
  339. modules/number-formatting.xml: <template name="number" match="number">
  340. modules/obsolete.xml: <template name="generate-obsolete-error">
  341. modules/obsolete.xml: <template name="latex-input" match="latex-input">
  342. modules/obsolete.xml: <template name="metadata" match="metadata">
  343. modules/obsolete.xml: <template match="figure/id|table/id|figure/label|table/label">
  344. modules/obsolete.xml: <template match="image/latex-scaling">
  345. modules/obsolete.xml: <template match="image/basename|image/format">
  346. modules/otago-specific.xml: <template name="paper" match="paper">
  347. modules/otago-specific.xml: <template name="subject-code" match="paper/subject-code">
  348. modules/otago-specific.xml: <template name="paper-number" match="paper/paper-number">
  349. modules/paper-calendar-dates.xml: <template name="TeachingPeriodDate" match="TeachingPeriodDate">
  350. modules/paper-calendar-dates.xml: <template name="TeachingPeriodDateRange" match="TeachingPeriodDateRange">
  351. modules/paper-calendar-dates.xml: <template name="format-teaching-date">
  352. modules/paper-calendar-dates.xml: <template name="format-teaching-date-range">
  353. modules/paper-calendar.xml: <template match="calendar">
  354. modules/paper-calendar.xml: <template name="generate-calendar-content">
  355. modules/paper-calendar.xml: <template match="header|footer">
  356. modules/paper-calendar.xml: <template match="heading|footing">
  357. modules/paper-calendar.xml: <template match="note">
  358. modules/paper-calendar.xml: <template match="week">
  359. modules/paper-calendar.xml: <template match="week[@holiday]">
  360. modules/paper-calendar.xml: <template match="lecture[node() and not( @holiday )]">
  361. modules/paper-calendar.xml: <template match="lecture[@holiday]">
  362. modules/paper-calendar.xml: <template match="lecture[not( node() )]">
  363. modules/paper-calendar.xml: <template match="laboratory[node()]">
  364. modules/paper-calendar.xml: <template match="tutorial[node()]">
  365. modules/paper-calendar.xml: <template match="laboratory[not( node() )]|tutorial[not( node() )]">
  366. modules/paper-calendar.xml: <template match="calendar//section[node()]|reading[node()]">
  367. modules/paper-calendar.xml: <template match="assessment[node()]">
  368. modules/paper-calendar.xml: <template match="calendar//section[not( node() )]|reading[not( node() )]|assessment[not( node() )]">
  369. modules/paper-calendar.xml: <template name="generate-number-cell">
  370. modules/paper-calendar.xml: <template name="generate-content-cell">
  371. modules/paper-calendar.xml: <template name="generate-empty-cell">
  372. modules/q-and-a.xml: <template name="question" match="question">
  373. modules/q-and-a.xml: <template name="answer" match="answer">
  374. modules/q-and-a.xml: <template name="hidden-answer" match="answer[@hide='yes']" />
  375. modules/q-and-a.xml: <template name="exercise" match="exercise">
  376. modules/quotations.xml: <template name="single-quote" match="quote[@single='yes']|q[@single='yes']">
  377. modules/quotations.xml: <template name="double-quote" match="quote|qq">
  378. modules/quotations.xml: <template name="nested-double-quote" match="quote//quote">
  379. modules/quotations.xml: <template name="nested-single-quote" match="quote[@single='yes']//quote" priority="2">
  380. modules/quotations.xml: <template name="quotation" match="quotation">
  381. modules/relational-algebra.xml: <template name="project-operator" match="project|project-operator|relational-project">
  382. modules/relational-algebra.xml: <template name="project-operator-strip" match="project|project-operator|relational-project" mode="strip">
  383. modules/relational-algebra.xml: <template name="extend-operator" match="extend|extend-operator|relational-extend">
  384. modules/relational-algebra.xml: <template name="extend-operator-strip" match="extend|extend-operator|relational-extend" mode="strip">
  385. modules/relational-algebra.xml: <template name="rename-operator" match="rename|rename-operator|relational-rename">
  386. modules/relational-algebra.xml: <template name="rename-operator-strip" match="rename|rename-operator|relational-rename" mode="strip">
  387. modules/relational-algebra.xml: <template name="restrict-operator" match="restrict|restrict-operator|relational-restrict">
  388. modules/relational-algebra.xml: <template name="restrict-operator-strip" match="restrict|restrict-operator|relational-restrict" mode="strip">
  389. modules/relational-algebra.xml: <template name="join-operator" match="join-operator|join|natural-join|inner-join|bowtie|relational-join">
  390. modules/relational-algebra.xml: <template name="join-operator-strip" match="join-operator|join|natural-join|inner-join|bowtie|relational-join" mode="strip">
  391. modules/relational-algebra.xml: <template name="outer-join-operator" match="outer-join-operator|outer-join|relational-outer-join">
  392. modules/relational-algebra.xml: <template name="outer-join-operator-strip" match="outer-join-operator|outer-join|relational-outer-join" mode="strip">
  393. modules/sectioning.xml: <template name="section" match="section">
  394. modules/sectioning.xml: <template name="generate-subs">
  395. modules/sectioning.xml: <template name="section-title" match="section/title">
  396. modules/special-characters.xml: <template name="space" match="space">
  397. modules/special-characters.xml: <template name="space-strip" match="space" mode="strip">
  398. modules/special-characters.xml: <template name="non-breaking-space" match="non-breaking-space|nbsp|no-break-space">
  399. modules/special-characters.xml: <template name="thin-space" match="thin-space|thinspace">
  400. modules/special-characters.xml: <template name="discretionary-hyphen" match="hyphen">
  401. modules/tabular.xml: <template name="tabular" match="tabular">
  402. modules/tabular.xml: <template name="aligned-tabular-column" match="tabular-columns/column[@align]">
  403. modules/tabular.xml: <template name="unaligned-tabular-column" match="tabular-columns/column[not(@align)]">
  404. modules/tabular.xml: <template name="tabular-header" match="tabular-header">
  405. modules/tabular.xml: <template name="tabular-footer" match="tabular-footer">
  406. modules/tabular.xml: <template name="tabular-body" match="tabular-body">
  407. modules/tabular.xml: <template name="row" match="row">
  408. modules/tabular.xml: <template name="last-row-body" match="tabular-body/row[( position() = last() ) and not( following-sibling::row-rule ) and not( ancestor::tabular/tabular-footer )]|tabular-footer/row[position() = last() and not( following-sibling::row-rule )]">
  409. modules/tabular.xml: <template name="row-rule-full" match="row-rule[not(@columns)]">
  410. modules/tabular.xml: <template name="row-rule-partial" match="row-rule[@columns]">
  411. modules/tabular.xml: <template name="multirow-cell" match="cell" mode="latex-multi-row">
  412. modules/tabular.xml: <template name="multicolumn-cell" match="cell" mode="latex-multi-column">
  413. modules/tabular.xml: <template match="cell">
  414. modules/titling.xml: <template name="preamble-title" match="document/title" mode="preamble">
  415. modules/titling.xml: <template name="preamble-subtitle" match="document/subtitle" mode="preamble" />
  416. modules/titling.xml: <template name="preamble-author" match="document/author" mode="preamble">
  417. modules/titling.xml: <template name="preamble-date" match="document/date" mode="preamble">
  418. modules/titling.xml: <template name="preamble-due-date" match="document/due-date" mode="preamble">
  419. modules/titling.xml: <template name="document-title-title" match="document/title" mode="title">
  420. modules/titling.xml: <template name="document-subtitle-title" match="document/subtitle" mode="title">
  421. modules/titling.xml: <template name="document-subtitle-unmoded" match="document/subtitle" />
  422. modules/titling.xml: <template name="document-author" match="document/author">
  423. modules/titling.xml: <template name="document-date" match="document/date" />
  424. modules/titling.xml: <template name="document-due-date-title" match="document/due-date" mode="title">
  425. modules/titling.xml: <template name="document-due-date-inline" match="document/due-date" mode="inline">
  426. modules/titling.xml: <template name="document-due-date-unmoded" match="document/due-date" />
  427. modules/titling.xml: <template name="document-title-unmoded" match="document/title" />
  428. modules/titling.xml: <template name="chapter-title" match="document/title" mode="chapter">