File: amssymb.perl

package info (click to toggle)
latex2html 2015-debian1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,652 kB
  • ctags: 3,386
  • sloc: perl: 30,941; makefile: 429; sh: 155
file content (53 lines) | stat: -rw-r--r-- 949 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# amsfonts.perl by Ross Moore <ross@mpce.mq.edu.au>  9-13-96
#
# Extension to LaTeX2HTML to suppress messages when AMS-fonts
# are loaded, via packages:
#   amsfonts, amssymb, eucal, eufrak or euscript. 
#
# Change Log:
# ===========

package main;
#

print "\nLoading AMS-fonts...";
#  Suppress the possible options to   \usepackage[....]{amsfonts}

sub do_amsfonts_psamsfonts {
}
sub do_amssymb_psamsfonts {
}
sub do_eucal_psamsfonts {
}
sub do_eucal_mathcal {
}
sub do_eucal_mathscr {
}
sub do_eufrak_psamsfonts {
}
sub do_euscript_psamsfonts {
}
sub do_euscript_mathcal {
}
sub do_euscript_mathscr {
}


&ignore_commands( <<_IGNORED_CMDS_);
_IGNORED_CMDS_


&process_commands_in_tex (<<_RAW_ARG_CMDS_);
mathbb # {}
_RAW_ARG_CMDS_


&process_commands_inline_in_tex (<<_RAW_ARG_CMDS_);
_RAW_ARG_CMDS_


&process_commands_nowrap_in_tex (<<_RAW_ARG_NOWRAP_CMDS_);
_RAW_ARG_NOWRAP_CMDS_


1;                              # This must be the last line