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 54 55 56 57 58 59 60 61 62 63 64 65
|
# $Id: aliphat.perl,v 1.1 1998/08/24 09:48:44 RRM Exp $
#
# aliphat.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 aliphat.perl,v $
#
package main;
&do_require_package('chemstr');
&process_commands_nowrap_in_tex ( <<_IGNORED_CMDS_);
_IGNORED_CMDS_
&process_commands_wrap_deferred ( <<_DEFERRED_CMDS_);
_DEFERRED_CMDS_
#
# 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_);
Northbond
Eastbond
Southbond
Westbond
NEBond
NEbond
SEBond
SEbond
NWBond
NWbond
SWBond
SWbond
# <Macros for tetravalent atoms>
tetrahedral # [] # {}
square # [] # {}
# <Macros for trivalent atoms>
rtrigonal # [] # {}
ltrigonal # [] # {}
utrigonal # [] # {}
Utrigonal # [] # {}
dtrigonal # [] # {}
Dtrigonal # [] # {}
# <Macros for two-carbon compounds>
ethylene # [] # {} # {}
ethylenev # [] # {} # {}
Ethylenev # [] # {} # {}
# <Macros for stereo-projection>
tetrastereo # [] # {}
dtetrastereo # [] # {}
ethanestereo # [] # {} # {}
_INLINE_CMDS_
1;
|