-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakedoc.g
29 lines (26 loc) · 892 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
## makedoc.g for the package IdRel,
## This builds the documentation of the IdRel package.
## Needs: GAPDoc & AutoDoc packages, latex, pdflatex, mkindex
## call this with GAP from within the package root directory
LoadPackage("idrel");
LoadPackage("AutoDoc");
AutoDoc(rec(
gapdoc := rec(
LaTeXOptions := rec(
EarlyExtraPreamble := """
\usepackage[pdftex]{graphicx}
"""
),
),
scaffold := rec(
includes := [ "intro.xml", "rws.xml", "logrws.xml",
"monpoly.xml", "modpoly.xml", "idrels.xml" ],
bib := "bib.xml",
entities := rec(
idrel := "<Package>IdRel</Package>",
AutoDoc := "<Package>AutoDoc</Package>"
)
)
));
# Create VERSION file for "make towww"
PrintTo( "VERSION", GAPInfo.PackageInfoCurrent.Version );