# BOOKSTUFF.pm # # A package of routines and global variables used by the # bookmaking software. package BOOKSTUFF ; require Exporter ; @ISA = qw( Exporter ) ; @EXPORT = qw( $dbfile $ext_in $ext_out $ext_out_html $pathsep ) ; # Default file name extensions for input and output files. # You probably don't need to change these. # $ext_in = "tex" ; $ext_out = "ltx" ; $ext_out_html = "l2h" ; # File name path separator for this operating system. # Uncomment the one for your operating system. # $pathsep = '/' ; # UNIX #$pathsep = '\\' ; # Win32 # Name of the database file created by makedb.pl and used # by a number of programs that repair the output from # latex2html. Should not need to be changed. # $dbfile = "paperdb" ; 1 ;