Revision a02f438d5b1c658558bcb9ff9ca03341a58e2a8e authored by Mohamed Barakat on 03 June 2015, 16:20:00 UTC, committed by Mohamed Barakat on 03 June 2015, 16:20:00 UTC
1 parent d32bd4c
Raw File
makedoc.g
##  this creates the documentation, needs: GAPDoc package, latex, pdflatex,
##  mkindex, dvips
##  
##  Call this with GAP.
##

LoadPackage( "GAPDoc" );

SetGapDocLaTeXOptions( "utf8" );

bib := ParseBibFiles( "doc/ExamplesForHomalg.bib" );
WriteBibXMLextFile( "doc/ExamplesForHomalgBib.xml", bib );

Read( "ListOfDocFiles.g" );

PrintTo( "VERSION", PackageInfo( "ExamplesForHomalg" )[1].Version );

MakeGAPDocDoc( "doc", "ExamplesForHomalg", list, "ExamplesForHomalg" );

GAPDocManualLab( "ExamplesForHomalg" );

QUIT;
back to top