https://github.com/homalg-project/homalg_project
Raw File
Tip revision: 18dee391119a3ee0829f6ac83811ec47054e9461 authored by Sebastian Gutsche on 06 November 2015, 09:47:06 UTC
Updated version and and archiveURL of all packages.
Tip revision: 18dee39
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