Revision 924d97e29dfd1ad9c66dc72a49ef5b540d788349 authored by Sebastian Gutsche on 11 August 2016, 07:04:11 UTC, committed by Sebastian Gutsche on 11 August 2016, 07:04:11 UTC
1 parent d6ae182
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/MatricesForHomalg.bib" );
WriteBibXMLextFile( "doc/MatricesForHomalgBib.xml", bib );

Read( "ListOfDocFiles.g" );

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

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

GAPDocManualLab( "MatricesForHomalg" );

QUIT;
back to top