Skip to content

Commit

Permalink
Properly invoke AutoDoc
Browse files Browse the repository at this point in the history
... so that generating the main scaffold works
  • Loading branch information
fingolfin committed May 24, 2023
1 parent 5d21fdd commit 6f972b0
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 218 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ doc/*.six
doc/*.tex
doc/*.toc
doc/*.txt
doc/_*.xml
doc/title.xml
43 changes: 0 additions & 43 deletions doc/PatternClass.xml

This file was deleted.

4 changes: 0 additions & 4 deletions doc/_AutoDocMainFile.xml

This file was deleted.

62 changes: 0 additions & 62 deletions doc/manualOLD.xml

This file was deleted.

43 changes: 0 additions & 43 deletions doc/manualUSEPATTERN.xml

This file was deleted.

63 changes: 0 additions & 63 deletions doc/title.xml

This file was deleted.

29 changes: 26 additions & 3 deletions makedoc.g
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@
if fail = LoadPackage("AutoDoc", "2016.02.16") then
Error("AutoDoc version 2016.02.16 or newer is required.");
fi;

#AutoDoc( rec( scaffold := true, autodoc := true ) );
AutoDoc( );
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",
),
) );

0 comments on commit 6f972b0

Please sign in to comment.