-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmakedoc.g
35 lines (34 loc) · 1.17 KB
/
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
33
34
35
## makedoc.g for the package Utils
## This builds the documentation of the Utils package.
## Needs: GAPDoc & AutoDoc packages, latex, pdflatex, mkindex
## call this with GAP from within the package root directory
##
LoadPackage( "GAPDoc" );
LoadPackage( "AutoDoc" );
AutoDoc( rec(
scaffold := rec(
## MainPage := false,
includes := [ "intro.xml",
"print.xml",
"lists.xml",
"number.xml",
"groups.xml",
"matrix.xml",
"iterator.xml",
"record.xml",
"download.xml",
"others.xml",
"obsolete.xml",
"transfer.xml" ],
bib := "bib.xml",
entities := rec(
AutoDoc := "<Package>AutoDoc</Package>",
ResClasses := "<Package>ResClasses</Package>",
RCWA := "<Package>RCWA</Package>",
XMod := "<Package>XMod</Package>",
Home := "<Package>Home</Package>",
Magma := "<M>{\\sf Magma}</M>",
MathJax := "<M>{\\sf MathJax}</M>"
)
)
));