/usr/share/latex2html/styles/havard.perl is in latex2html 2008-debian1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # nharvard.perl - calls natbib.perl to emulate harvard
package main;
# Setting $HARVARD makes natbib.perl behave differently
$HARVARD=1;
foreach $dir (split(/:/,$LATEX2HTMLSTYLES)) {
if (-f "$dir/natbib.perl") {
print "Loading $dir/natbib.perl\n";
require "$dir/natbib.perl";
$styles_loaded{"natbib"}=1;
last
}
}
1; # This must be the last line
|