-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmakedoc.g
More file actions
34 lines (34 loc) · 833 Bytes
/
makedoc.g
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
#
# PatternClass: A permutation pattern class package
#
# This file is a script which compiles the package manual.
#
if fail = LoadPackage("AutoDoc", "2016.02.16") then
Error("AutoDoc version 2016.02.16 or newer is required.");
fi;
AutoDoc( rec(
autodoc := true,
gapdoc := rec(
LaTeXOptions := rec(
EarlyExtraPreamble := """
\usepackage{graphicx}
\usepackage{float}
""",
),
),
scaffold := rec(
includes := [
"intro.xml",
"tpn.xml",
"encoding.xml",
"tpntoaut.xml",
"auttotpn.xml",
"classandbase.xml",
"basics.xml",
"props.xml",
"langs.xml",
"tmp.xml",
],
bib := "bibliography.bib",
),
) );