summaryrefslogtreecommitdiff
path: root/data/templates/default.texinfo
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/default.texinfo')
-rw-r--r--data/templates/default.texinfo64
1 files changed, 64 insertions, 0 deletions
diff --git a/data/templates/default.texinfo b/data/templates/default.texinfo
new file mode 100644
index 000000000..458d4fdda
--- /dev/null
+++ b/data/templates/default.texinfo
@@ -0,0 +1,64 @@
+\input texinfo
+@documentencoding UTF-8
+$for(header-includes)$
+$header-includes$
+$endfor$
+
+$if(strikeout)$
+@macro textstrikeout{text}
+~~\text\~~
+@end macro
+
+$endif$
+$if(subscript)$
+@macro textsubscript{text}
+@iftex
+@textsubscript{\text\}
+@end iftex
+@ifnottex
+_@{\text\@}
+@end ifnottex
+@end macro
+
+$endif$
+$if(superscript)$
+@macro textsuperscript{text}
+@iftex
+@textsuperscript{\text\}
+@end iftex
+@ifnottex
+^@{\text\@}
+@end ifnottex
+@end macro
+
+$endif$
+@ifnottex
+@paragraphindent 0
+@end ifnottex
+$if(titlepage)$
+@titlepage
+@title $title$
+$for(author)$
+@author $author$
+$endfor$
+$if(date)$
+$date$
+$endif$
+@end titlepage
+
+$endif$
+$for(include-before)$
+$include-before$
+
+$endfor$
+$if(toc)$
+@contents
+
+$endif$
+$body$
+$for(include-after)$
+
+$include-after$
+$endfor$
+
+@bye