File: carom.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 (45 lines) | stat: -rw-r--r-- 948 bytes parent folder | download | duplicates (13)
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
# $Id: carom.perl,v 1.1 1998/08/24 09:48:45 RRM Exp $
#
#  carom.perl   by Ross Moore <ross@mpce.mq.edu.au>
#
# This file is part of the LaTeX2HTML support for the XyM-TeX package
# for TeX and LaTeX by Shinsaku Fujita
#
# Change Log
# ==========
# $Log carom.perl,v $
#

package main;

&do_require_package('chemstr');

#
# Each command is treated as generating a separate inlined image.
#
# If this is inadequate for more complicated structures, then make
# use of the \begin{makeimage}...\end{makeimage} environment
# from the  html.sty  package.
#

&process_commands_in_tex ( <<_INLINE_CMDS_);
cyclohexanev # [] # {}
bzdrv # [] # {}
decalinev  # [] # {}
naphdrv # [] # {}
tetralinev # [] # {}
hanthracenev # [] # {}
anthracenev # [] # {}
hphenanthrenev # [] # {}
phenanthrenev # [] # {}
steroid # [] # {}
steroidchain # [] # {}
cyclohexaneh # [] # {}
bzdrh # [] # {}
decalineh # [] # {}
naphdrh # [] # {}
tetralineh # [] # {}
_INLINE_CMDS_

1;