Revision 9cdf52772eeab80c1f2ce0e8082819727718e714 authored by Mohamed Barakat on 11 June 2015, 15:19:32 UTC, committed by Mohamed Barakat on 11 June 2015, 15:19:32 UTC
1 parent 91cc26b
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/Gauss.bib" );
#WriteBibXMLextFile( "doc/GaussBib.xml", bib );

Read( "ListOfDocFiles.g" );

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

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

GAPDocManualLab( "GaussForHomalg" );

QUIT;
back to top