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/LocalizeRingForHomalg.bib" );
WriteBibXMLextFile( "doc/LocalizeRingForHomalgBib.xml", bib );

Read( "ListOfDocFiles.g" );

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

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

GAPDocManualLab("LocalizeRingForHomalg");

QUIT;
back to top