1 $options->{"EXTRA_HEAD"} = '<link rel="icon" href="figures/favicon.ico">
4 # Make the output file names consist of the base name followed by a number.
7 use vars qw($element_file_name);
11 sub filename_simple($$$)
13 my $converter = shift;
17 my $prefix = $converter->{'document_name'};
18 # If we're not splitting, just return the name.
19 if (!get_conf('SPLIT')) {
20 return $prefix.'.'.$converter->get_conf('EXTENSION');
22 if ($converter->element_is_top($element)) {
23 # The table of contents file should be named this.
24 return "maxima_toc.html";
28 return $prefix.'.'.$converter->get_conf('EXTENSION');
30 return $prefix.'_'.$file_nr.'.'.$converter->get_conf('EXTENSION');
35 $element_file_name = \&filename_simple;