|
##
## Datastructures: GAP package providing common datastructures.
##
## Copyright (C) 2015-2017 The datastructures team.
## For list of the team members, please refer to the COPYRIGHT file.
##
## This package is licensed under the GPL 2 or later, please refer
## to the COPYRIGHT.md and LICENSE files for details.
##
## this creates the documentation, needs: GAPDoc and AutoDoc packages, pdflatex
##
## Call this with GAP from within the package directory.
if fail = LoadPackage("AutoDoc", ">= 2016.01.21") then
Error("AutoDoc 2016.01.21 or newer is required");
fi;
AutoDoc(rec(
autodoc := rec( files := [ "doc/Intros.autodoc" ] ),
scaffold := rec( includes := [ "intro.xml", "install.xml" ]
, entities := rec( GITHUB := "<B>GitHub</B>" ) )
));
QUIT;
[ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet)
]
|