forked from gap-packages/AutoDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakedoc.g
32 lines (29 loc) · 859 Bytes
/
makedoc.g
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
#############################################################################
##
## AutoDoc package
##
## Copyright 2012-2016
## Sebastian Gutsche, University of Kaiserslautern
## Max Horn, Justus-Liebig-Universität Gießen
##
## Licensed under the GPL 2 or later.
##
#############################################################################
LoadPackage("AutoDoc");
AutoDoc(rec(
autodoc := true,
scaffold := rec(
includes := [ "Tutorials.xml",
"Comments.xml" ],
bib := "bib.xml",
gapdoc_latex_options := rec( EarlyExtraPreamble := """
\usepackage{a4wide}
\newcommand{\bbZ} {\mathbb{Z}}
""" ),
entities := rec(
io := "<Package>io</Package>",
PackageName := "<Package>PackageName</Package>"
)
)
));
QUIT;