Revision b134331f84aeaed5ea4c8f1cea5a7a760128385c authored by Mohamed Barakat on 11 March 2022, 08:23:45 UTC, committed by GitHub on 11 March 2022, 08:23:45 UTC
2 parent s ffbeb0c + 7c6b864
Raw File
makedoc.g
#
# LoopIntegrals
#
# 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(
    gapdoc := rec(
        LaTeXOptions := rec(
            LateExtraPreamble := """
                \usepackage{amsmath}
                \usepackage[T1]{fontenc}
                \usepackage{tikz}
                \usetikzlibrary{shapes,arrows,matrix}
                \usepackage{faktor}
                """
        ),
    ),
    scaffold := rec(
        entities := [ "GAP4", "CAP" ],
    ),
    autodoc := rec( ),
    extract_examples := rec( units := "Single" ),
    maketest := rec( folder := ".",
                     commands :=
                       [ "LoadPackage( \"4ti2Interface\" );",
                       ]
                      ),
));

QUIT;
back to top