blob: 82741b9cf3b4c9214da71024e7cd0c09ba6e5fa7 [file] [log] [blame]
Fred Drakebc2285e1999-07-29 22:03:11 +00001<?xml version="1.0" encoding="iso-8859-1"?>
2<conversion>
3 <!-- Miscellaneous. -->
4 <macro name="declaremodule">
5 <attribute name="id" optional="yes"/>
6 <attribute name="type"/>
7 <attribute name="name"/>
8 </macro>
9 <macro name="modulesynopsis">
10 <content/>
11 </macro>
12 <macro name="platform">
13 <content/>
14 </macro>
15 <macro name="deprecated">
16 <attribute name="version"/>
17 <content/>
18 </macro>
19 <macro name="label">
20 <attribute name="id"/>
21 </macro>
22 <macro name="nodename" outputname="label">
23 <attribute name="id"/>
24 </macro>
25 <macro name="localmoduletable"/>
26 <macro name="manpage">
27 <attribute name="name"/>
28 <attribute name="section"/>
29 </macro>
30 <macro name="module">
31 <content/>
32 </macro>
33 <macro name="moduleauthor">
34 <attribute name="name"/>
35 <attribute name="email"/>
36 </macro>
Fred Drake91f31ea1999-11-09 19:33:24 +000037 <macro name="citetitle">
38 <attribute name="href" optional="yes"/>
39 <content/>
40 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +000041 <macro name="rfc">
42 <attribute name="num"/>
43 </macro>
44 <macro name="sectionauthor">
45 <attribute name="name"/>
46 <attribute name="email"/>
47 </macro>
Fred Draked397f232000-11-22 16:45:19 +000048 <macro name="shortversion"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000049 <macro name="versionadded">
50 <attribute name="version"/>
51 </macro>
Fred Draked397f232000-11-22 16:45:19 +000052 <!-- This is broken: we need to re-order the optional and required
53 parameters, making the optional parameter the content for the
54 element. The processor is not powerful enough to handle this.
55 -->
Fred Drakebc2285e1999-07-29 22:03:11 +000056 <macro name="versionchanged">
57 <attribute name="version"/>
58 </macro>
59
60 <!-- Module referencing. -->
61 <macro name="refmodule" outputname="module">
62 <attribute name="" optional="yes"/>
63 <attribute name="link">yes</attribute>
64 <content/>
65 </macro>
66
67 <!-- Information units. -->
68 <!-- C things. -->
69 <environment name="cfuncdesc">
70 <attribute name="type"/>
71 <attribute name="name"/>
72 <child name="args"/>
73 </environment>
74 <environment name="ctypedesc">
Fred Draked397f232000-11-22 16:45:19 +000075 <attribute name="tag" optional="yes"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000076 <attribute name="name"/>
77 </environment>
78 <environment name="cvardesc">
79 <attribute name="type"/>
80 <attribute name="name"/>
81 </environment>
82
83 <!-- Python things. -->
84 <macro name="optional">
85 <content/>
86 </macro>
Fred Drake2ed27d32000-11-17 19:05:12 +000087 <macro name="unspecified"/>
88 <macro name="moreargs"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000089 <environment name="classdesc">
90 <attribute name="name"/>
91 <child name="args"/>
92 </environment>
93 <environment name="datadesc">
94 <attribute name="name"/>
95 </environment>
96 <environment name="excdesc">
97 <attribute name="name"/>
98 </environment>
99
100 <environment name="funcdesc">
101 <attribute name="name"/>
102 <child name="args"/>
103 </environment>
104 <macro name="funcline">
105 <attribute name="name"/>
106 <child name="args"/>
107 </macro>
108 <environment name="funcdescni" outputname="funcdesc">
109 <attribute name="index">no</attribute>
110 <attribute name="name"/>
111 <child name="args"/>
112 </environment>
113 <macro name="funclineni" outputname="funcline">
114 <attribute name="index">no</attribute>
115 <attribute name="name"/>
116 <child name="args"/>
117 </macro>
118
119 <environment name="memberdesc">
120 <attribute name="class" optional="yes"/>
121 <attribute name="name"/>
122 </environment>
123 <environment name="memberdescni" outputname="memberdesc">
124 <attribute name="index">no</attribute>
125 <attribute name="class" optional="yes"/>
126 <attribute name="name"/>
127 </environment>
128
129 <environment name="methoddesc">
130 <attribute name="class" optional="yes"/>
131 <attribute name="name"/>
132 <child name="args"/>
133 </environment>
134 <macro name="methodline">
135 <attribute name="class" optional="yes"/>
136 <attribute name="name"/>
137 <child name="args"/>
138 </macro>
139 <environment name="methoddescni">
140 <attribute name="index">no</attribute>
141 <attribute name="class" optional="yes"/>
142 <attribute name="name"/>
143 <child name="args"/>
144 </environment>
145 <macro name="methodlineni" outputname="methodline">
146 <attribute name="index">no</attribute>
147 <attribute name="class" optional="yes"/>
148 <attribute name="name"/>
149 <child name="args"/>
150 </macro>
151
152 <environment name="opcodedesc">
153 <attribute name="name"/>
154 <attribute name="var"/>
155 </environment>
156
157 <!-- "See also:" sections. -->
158 <macro name="seemodule">
159 <attribute name="ref" optional="yes"/>
160 <attribute name="name"/>
Fred Draked397f232000-11-22 16:45:19 +0000161 <child name="description"/>
162 </macro>
163 <macro name="seepep">
164 <attribute name="number"/>
165 <child name="title"/>
166 <child name="description"/>
167 </macro>
168 <macro name="seerfc">
169 <attribute name="number"/>
170 <child name="title"/>
171 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000172 </macro>
173 <macro name="seetext">
Fred Draked397f232000-11-22 16:45:19 +0000174 <child name="description"/>
175 </macro>
176 <macro name="seetitle">
177 <attribute name="href" optional="yes"/>
178 <child name="title"/>
179 <child name="description"/>
180 </macro>
181 <macro name="seeurl">
182 <attribute name="href"/>
183 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000184 </macro>
185
186 <!-- Index-generating markup. -->
187 <macro name="index" outputname="indexterm">
188 <attribute name="term1"/>
189 </macro>
190 <macro name="indexii" outputname="indexterm">
191 <attribute name="term1"/>
192 <attribute name="term2"/>
193 </macro>
194 <macro name="indexiii" outputname="indexterm">
195 <attribute name="term1"/>
196 <attribute name="term2"/>
197 <attribute name="term3"/>
198 </macro>
199 <macro name="indexiv" outputname="indexterm">
200 <attribute name="term1"/>
201 <attribute name="term2"/>
202 <attribute name="term3"/>
203 <attribute name="term4"/>
204 </macro>
205
206 <macro name="ttindex" outputname="indexterm">
207 <attribute name="style">tt</attribute>
208 <attribute name="term1"/>
209 </macro>
210
211 <macro name="refmodindex">
212 <attribute name="module"/>
213 </macro>
214 <macro name="stmodindex">
215 <attribute name="module"/>
216 </macro>
217 <macro name="refbimodindex" outputname="refmodindex">
218 <attribute name="module"/>
219 </macro>
220 <macro name="refexmodindex" outputname="refmodindex">
221 <attribute name="module"/>
222 </macro>
223 <macro name="refstmodindex" outputname="refmodindex">
224 <attribute name="module"/>
225 </macro>
226
227 <macro name="bifuncindex">
228 <attribute name="name"/>
229 </macro>
230 <macro name="exindex">
231 <attribute name="name"/>
232 </macro>
233 <macro name="obindex">
234 <attribute name="name"/>
235 </macro>
236 <macro name="kwindex">
237 <attribute name="name"/>
238 </macro>
239 <macro name="opindex">
240 <attribute name="type"/>
241 </macro>
242 <macro name="stindex">
243 <attribute name="type"/>
244 </macro>
245 <macro name="withsubitem">
246 <attribute name="text"/>
247 <content/>
248 </macro>
249 <macro name="setindexsubitem">
250 <attribute name="text"/>
251 </macro>
252
253 <!-- Entity management. -->
254 <macro name="include">
255 <attribute name="source"/>
256 </macro>
257 <macro name="input">
258 <attribute name="source"/>
259 </macro>
260
261 <!-- Large-scale document structure. -->
262 <macro name="documentclass">
263 <attribute name="classname"/>
264 </macro>
265
266 <environment name="document"
267 endcloses="chapter chapter* section section*
268 subsection subsection*
269 subsubsection subsubsection*
270 paragraph paragraph* subparagraph subparagraph*"/>
271
272 <macro name="chapter"
273 closes="chapter chapter* section section* subsection subsection*
274 subsubsection subsubsection*
275 paragraph paragraph* subparagraph subparagraph*">
276 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000277</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000278 <child name="title"/>
279 <content implied="yes"/>
280 </macro>
281 <macro name="chapter*" outputname="chapter"
282 closes="chapter chapter* section section* subsection subsection*
283 subsubsection subsubsection*
284 paragraph paragraph* subparagraph subparagraph*">
285 <attribute name="numbered">no</attribute>
286 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000287</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000288 <child name="title"/>
289 <content implied="yes"/>
290 </macro>
291
292 <macro name="section"
293 closes="section section* subsection subsection*
294 subsubsection subsubsection*
295 paragraph paragraph* subparagraph subparagraph*">
296 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000297</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000298 <child name="title"/>
299 <content implied="yes"/>
300 </macro>
301 <macro name="section*" outputname="section"
302 closes="section section* subsection subsection*
303 subsubsection subsubsection*
304 paragraph paragraph* subparagraph subparagraph*">
305 <attribute name="numbered">no</attribute>
306 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000307</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000308 <child name="title"/>
309 <content implied="yes"/>
310 </macro>
311
312 <macro name="subsection"
313 closes="subsection subsection* subsubsection subsubsection*
314 paragraph paragraph* subparagraph subparagraph*">
315 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000316</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000317 <child name="title"/>
318 <content implied="yes"/>
319 </macro>
320 <macro name="subsection*" outputname="subsection"
321 closes="subsection subsection* subsubsection subsubsection*
322 paragraph paragraph* subparagraph subparagraph*">
323 <attribute name="numbered">no</attribute>
324 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000325</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000326 <child name="title"/>
327 <content implied="yes"/>
328 </macro>
329
330 <macro name="subsubsection"
331 closes="subsubsection subsubsection*
332 paragraph paragraph* subparagraph subparagraph*">
333 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000334</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000335 <child name="title"/>
336 <content implied="yes"/>
337 </macro>
338 <macro name="subsubsection*" outputname="subsubsection"
339 closes="subsubsection subsubsection*
340 paragraph paragraph* subparagraph subparagraph*">
341 <attribute name="numbered">no</attribute>
342 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000343</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000344 <child name="title"/>
345 <content implied="yes"/>
346 </macro>
347
348 <macro name="paragraph"
349 closes="paragraph paragraph* subparagraph subparagraph*">
350 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000351</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000352 <child name="title"/>
353 <content implied="yes"/>
354 </macro>
355 <macro name="paragraph*" outputname="paragraph"
356 closes="paragraph paragraph* subparagraph subparagraph*">
357 <attribute name="numbered">no</attribute>
358 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000359</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000360 <child name="title"/>
361 <content implied="yes"/>
362 </macro>
363
364 <macro name="subparagraph"
365 closes="subparagraph subparagraph*">
366 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000367</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000368 <child name="title"/>
369 <content implied="yes"/>
370 </macro>
371 <macro name="subparagraph*" outputname="subparagraph"
372 closes="subparagraph subparagraph*">
373 <attribute name="numbered">no</attribute>
374 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000375</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000376 <child name="title"/>
377 <content implied="yes"/>
378 </macro>
379 <macro name="title">
380 <content/>
381 </macro>
382
383 <macro name="appendix" outputname="back-matter"
384 closes="chapter chapter* section subsection subsubsection
385 paragraph subparagraph"/>
386
387 <environment name="list"
388 endcloses="item">
389 <attribute name="bullet"/>
390 <attribute name="init"/>
391 </environment>
392 <macro name="item" closes="item">
393 <child name="leader" optional="yes"/>
394 <content implied="yes"/>
395 </macro>
396
397 <macro name="ref">
398 <attribute name="ref"/>
399 </macro>
400
401 <environment name="description" outputname="descriptionlist"
402 endcloses="item"/>
403
404 <environment name="enumerate" outputname="enumeration"
405 endcloses="item"/>
406
407 <environment name="fulllineitems"
408 endcloses="item"/>
409
410 <environment name="itemize"
411 endcloses="item"/>
412
413 <environment name="definitions" outputname="definitionlist"
414 encloses="term"/>
415 <macro name="term" closes="definition">
416 <!-- not really optional, but uses the [] syntax -->
417 <child name="term" optional="yes"/>
418 <child name="definition" implied="yes"/>
419 </macro>
420
421 <environment name="comment" verbatim="yes"/>
422 <environment name="verbatim" verbatim="yes"/>
423 <environment name="verbatim*" verbatim="yes">
424 <!-- not used anywhere, but it's a standard LaTeXism -->
425 <attribute name="spaces">visible</attribute>
426 </environment>
427
428 <!-- Table markup. -->
429 <macro name="hline"/>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000430 <environment name="tableii" outputname="table">
431 <attribute name="cols">2</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000432 <attribute name="colspec"/>
433 <attribute name="style"/>
434 <child name="entry"/>
435 <text>
436 </text>
437 <child name="entry"/>
438 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000439 <environment name="longtableii" outputname="table">
440 <attribute name="cols">2</attribute>
441 <attribute name="colspec"/>
442 <attribute name="style"/>
443 <child name="entry"/>
444 <text>
445 </text>
446 <child name="entry"/>
447 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000448 <macro name="lineii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000449 <child name="entry"/>
450 <text>
451 </text>
452 <child name="entry"/>
453 </macro>
454
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000455 <environment name="tableiii" outputname="table">
456 <attribute name="cols">3</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000457 <attribute name="colspec"/>
458 <attribute name="style"/>
459 <child name="entry"/>
460 <text>
461 </text>
462 <child name="entry"/>
463 <text>
464 </text>
465 <child name="entry"/>
466 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000467 <environment name="longtableiii" outputname="table">
468 <attribute name="cols">3</attribute>
469 <attribute name="colspec"/>
470 <attribute name="style"/>
471 <child name="entry"/>
472 <text>
473 </text>
474 <child name="entry"/>
475 <text>
476 </text>
477 <child name="entry"/>
478 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000479 <macro name="lineiii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000480 <child name="entry"/>
481 <text>
482 </text>
483 <child name="entry"/>
484 <text>
485 </text>
486 <child name="entry"/>
487 </macro>
488
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000489 <environment name="tableiv" outputname="table">
490 <attribute name="cols">4</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000491 <attribute name="colspec"/>
492 <attribute name="style"/>
493 <child name="entry"/>
494 <text>
495 </text>
496 <child name="entry"/>
497 <text>
498 </text>
499 <child name="entry"/>
500 <text>
501 </text>
502 <child name="entry"/>
503 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000504 <environment name="longtableiv" outputname="table">
505 <attribute name="cols">4</attribute>
506 <attribute name="colspec"/>
507 <attribute name="style"/>
508 <child name="entry"/>
509 <text>
510 </text>
511 <child name="entry"/>
512 <text>
513 </text>
514 <child name="entry"/>
515 <text>
516 </text>
517 <child name="entry"/>
518 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000519 <macro name="lineiv" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000520 <child name="entry"/>
521 <text>
522 </text>
523 <child name="entry"/>
524 <text>
525 </text>
526 <child name="entry"/>
527 <text>
528 </text>
529 <child name="entry"/>
530 </macro>
531
532 <!-- These are handled at a later translation stage, at least for now. -->
Fred Drake031e2221999-08-02 14:32:11 +0000533 <macro name="Cpp" outputname="">
534 <text>C++</text>
535 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000536 <macro name="geq" outputname="">
537 <entityref name="geq"/>
538 </macro>
539 <macro name="LaTeX" outputname="">
540 <text>LaTeX</text>
541 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000542 <macro name="ldots" outputname="">
543 <text>...</text>
544 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000545 <macro name="leq" outputname="">
546 <entityref name="leq"/>
547 </macro>
548 <macro name="TeX" outputname="">
549 <text>TeX</text>
550 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000551 <macro name="version"/>
552
553 <!-- Misc. -->
554 <macro name="emph">
555 <content/>
556 </macro>
557 <macro name="strong">
558 <content/>
559 </macro>
560 <macro name="textrm">
561 <content/>
562 </macro>
563 <macro name="texttt">
564 <content/>
565 </macro>
566 <macro name="code">
567 <content/>
568 </macro>
569 <macro name="exception">
570 <content/>
571 </macro>
572 <macro name="keyword">
573 <content/>
574 </macro>
575 <macro name="samp">
576 <content/>
577 </macro>
578 <macro name="class">
579 <content/>
580 </macro>
581 <macro name="cdata">
582 <content/>
583 </macro>
584 <macro name="cfunction">
585 <content/>
586 </macro>
587 <macro name="ctype">
588 <content/>
589 </macro>
590 <macro name="pytype">
591 <content/>
592 </macro>
593 <macro name="character">
594 <content/>
595 </macro>
596 <macro name="constant">
597 <content/>
598 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000599 <macro name="envvar" outputname="envar">
Fred Drakebc2285e1999-07-29 22:03:11 +0000600 <content/>
601 </macro>
602 <macro name="file" outputname="filename">
603 <content/>
604 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000605 <macro name="filenq" outputname="filename">
606 <attribute name="quote">no</attribute>
607 <content/>
608 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000609 <macro name="function">
610 <content/>
611 </macro>
612 <macro name="kbd">
613 <content/>
614 </macro>
615 <macro name="makevar">
616 <content/>
617 </macro>
618 <macro name="method">
619 <content/>
620 </macro>
621 <macro name="member">
622 <content/>
623 </macro>
624 <macro name="mimetype">
625 <content/>
626 </macro>
627 <macro name="newsgroup">
628 <content/>
629 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000630 <macro name="program" outputname="command">
Fred Drakebc2285e1999-07-29 22:03:11 +0000631 <content/>
632 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000633 <macro name="programopt" outputname="option">
Fred Drake91f31ea1999-11-09 19:33:24 +0000634 <content/>
635 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000636 <macro name="regexp">
637 <content/>
638 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000639 <macro name="var">
Fred Drakebc2285e1999-07-29 22:03:11 +0000640 <content/>
641 </macro>
642 <macro name="email">
643 <content/>
644 </macro>
645 <macro name="url">
646 <content/>
647 </macro>
648 <macro name="footnote">
649 <content/>
650 </macro>
651 <macro name="dfn" outputname="definedterm">
652 <content/>
653 </macro>
654
655 <macro name="mbox">
656 <content/>
657 </macro>
658
659 <!-- minimal math stuff to get by -->
Fred Drake8a3b4491999-11-23 21:48:41 +0000660 <macro name="pi"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000661 <macro name="sqrt">
662 <content/>
663 </macro>
664 <macro name="frac" outputname="fraction">
665 <child name="numerator"/>
666 <child name="denominator"/>
667 </macro>
668 <macro name="sum">
669 <content/>
670 </macro>
671
672 <!-- Conversions to text; perhaps could be different? There's -->
673 <!-- no way for a style sheet to work with these this way. -->
Fred Draked95f4e12000-07-01 06:26:44 +0000674 <macro name="ABC" outputname="">
Fred Drakebc2285e1999-07-29 22:03:11 +0000675 <text>ABC</text>
676 </macro>
677 <macro name="ASCII" outputname="">
678 <text>ASCII</text>
679 </macro>
680 <macro name="C" outputname="">
681 <text>C</text>
682 </macro>
683 <macro name="EOF" outputname="">
684 <text>EOF</text>
685 </macro>
686 <macro name="e" outputname="">
687 <text>\</text>
688 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000689 <macro name="NULL" outputname="constant">
Fred Drakebc2285e1999-07-29 22:03:11 +0000690 <text>NULL</text>
691 </macro>
692 <macro name="POSIX" outputname="">
693 <text>POSIX</text>
694 </macro>
695 <macro name="UNIX" outputname="">
696 <text>Unix</text>
697 </macro>
Fred Draked397f232000-11-22 16:45:19 +0000698 <macro name="textasciitilde" outputname="">
699 <text>~</text>
700 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000701
702 <!-- These will end up disappearing as well! -->
703 <macro name="catcode" outputname=""/>
704 <macro name="fi" outputname=""/>
705 <macro name="ifhtml" outputname=""/>
706 <macro name="indexname" outputname=""/>
707 <macro name="labelwidth" outputname=""/>
708 <macro name="large" outputname=""/>
709 <macro name="leftmargin" outputname=""/>
710 <macro name="makeindex" outputname=""/>
711 <macro name="makemodindex" outputname=""/>
712 <macro name="maketitle" outputname=""/>
713 <macro name="noindent" outputname=""/>
714 <macro name="protect" outputname=""/>
715 <macro name="renewcommand">
716 <attribute name="macro"/>
717 <attribute name="nargs" optional="yes"/>
718 <content/>
719 </macro>
720 <macro name="tableofcontents" outputname=""/>
721 <macro name="vspace">
722 <attribute name="size"/>
723 </macro>
724</conversion>