diff options
Diffstat (limited to 'default.texinfo')
-rw-r--r-- | default.texinfo | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/default.texinfo b/default.texinfo new file mode 100644 index 0000000..458d4fd --- /dev/null +++ b/default.texinfo | |||
@@ -0,0 +1,64 @@ | |||
1 | \input texinfo | ||
2 | @documentencoding UTF-8 | ||
3 | $for(header-includes)$ | ||
4 | $header-includes$ | ||
5 | $endfor$ | ||
6 | |||
7 | $if(strikeout)$ | ||
8 | @macro textstrikeout{text} | ||
9 | ~~\text\~~ | ||
10 | @end macro | ||
11 | |||
12 | $endif$ | ||
13 | $if(subscript)$ | ||
14 | @macro textsubscript{text} | ||
15 | @iftex | ||
16 | @textsubscript{\text\} | ||
17 | @end iftex | ||
18 | @ifnottex | ||
19 | _@{\text\@} | ||
20 | @end ifnottex | ||
21 | @end macro | ||
22 | |||
23 | $endif$ | ||
24 | $if(superscript)$ | ||
25 | @macro textsuperscript{text} | ||
26 | @iftex | ||
27 | @textsuperscript{\text\} | ||
28 | @end iftex | ||
29 | @ifnottex | ||
30 | ^@{\text\@} | ||
31 | @end ifnottex | ||
32 | @end macro | ||
33 | |||
34 | $endif$ | ||
35 | @ifnottex | ||
36 | @paragraphindent 0 | ||
37 | @end ifnottex | ||
38 | $if(titlepage)$ | ||
39 | @titlepage | ||
40 | @title $title$ | ||
41 | $for(author)$ | ||
42 | @author $author$ | ||
43 | $endfor$ | ||
44 | $if(date)$ | ||
45 | $date$ | ||
46 | $endif$ | ||
47 | @end titlepage | ||
48 | |||
49 | $endif$ | ||
50 | $for(include-before)$ | ||
51 | $include-before$ | ||
52 | |||
53 | $endfor$ | ||
54 | $if(toc)$ | ||
55 | @contents | ||
56 | |||
57 | $endif$ | ||
58 | $body$ | ||
59 | $for(include-after)$ | ||
60 | |||
61 | $include-after$ | ||
62 | $endfor$ | ||
63 | |||
64 | @bye | ||