File: harvard.perl

package info (click to toggle)
latex2html 2021-debian1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,796 kB
  • sloc: perl: 33,871; makefile: 437; sh: 22
file content (17 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (37)
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