-
Notifications
You must be signed in to change notification settings - Fork 6
/
makedoc.g
48 lines (44 loc) · 1.41 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
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-License-Identifier: GPL-2.0-or-later
# StableCategories: Stable categories of additive categories
#
# This file is a script which compiles the package manual.
#
if fail = LoadPackage( "AutoDoc", "2019.05.20" ) then
Error( "AutoDoc version 2019.05.20 or newer is required." );
fi;
AutoDoc( rec(
autodoc := rec(
files := [ "doc/Doc.autodoc" ],
scan_dirs := [ "doc", "gap", "examples", "examples/doc" ],
),
extract_examples := rec(
units := "Single",
),
gapdoc := rec(
LaTeXOptions := rec(
LateExtraPreamble := """
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{amssymb}
\usepackage{cite}
\usepackage{mathrsfs}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{faktor}
\usepackage{tikz-cd}
\newcommand{\comp}[2]{ #1 \cdot #2 }
\newcommand{\CC}{\mathscr{C}}
\newcommand{\EE}{\mathcal{E}}
\newcommand{\QQ}{\mathcal{Q}}
\newcommand{\LL}{\mathcal{L}}
\newcommand{\id}{\mathrm{id}}
\newcommand{\Ch}[1]{\mathrm{Ch}^b(#1)}
\newcommand{\Ho}[1]{\mathrm{K}^b(#1)}
""",
),
),
scaffold := rec(
entities := [ "homalg", "CAP" ],
),
) );
QUIT;