Overview
Comment: | Now handles multi-character subscripts. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
dbdafa44725efb88beea4d50790c0308 |
User & Date: | gawthrop@users.sourceforge.net on 1996-12-31 16:14:53 |
Other Links: | branch diff | manifest | tags |
Context
1996-12-31
| ||
16:20:42 |
Just write causality information at top level -- it gets a bit voluminous if written at deeper levels. check-in: 53097c3f8a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:14:53 | Now handles multi-character subscripts. check-in: dbdafa4472 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:49:09 |
Don't copy port bond causality if already set -- allows subsystem causality to be preset directely on named SS. check-in: 084adb76c9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/latex_tidy from [a6992a47b5] to [ef5ed2644d].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 1996/12/12 16:03:19 peterg ## Removed global argument stuff for y - its already done in the ## translation. ## ## Revision 1.5 1996/12/12 15:59:06 peterg ## Generic handling of subscript for y,u,ui ## | > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 1996/12/19 10:24:29 peterg ## Uniform conversion of mttxi --> x_{i} for x,u,y and z ## Convert ???mttx to mtt x for x,u,y and z ## ## Revision 1.6 1996/12/12 16:03:19 peterg ## Removed global argument stuff for y - its already done in the ## translation. ## ## Revision 1.5 1996/12/12 15:59:06 peterg ## Generic handling of subscript for y,u,ui ## |
︙ | ︙ | |||
31 32 33 34 35 36 37 | ## Revision 1.2 1996/08/19 14:35:51 peter ## Prettyfied z dot. ## ## Revision 1.1 1996/08/18 20:03:12 peter ## Initial revision ## ############################################################### | | > > | > | > > > > < < < < < | 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 66 67 68 69 70 71 72 73 74 75 76 | ## Revision 1.2 1996/08/19 14:35:51 peter ## Prettyfied z dot. ## ## Revision 1.1 1996/08/18 20:03:12 peter ## Initial revision ## ############################################################### cat $1 | \ tr "[A-Z]" "[a-z]" | \ sed \ -e "s/_\([a-z0-9]*\)/_{\1}/g" \ -e "s/\// \\\over /g" \ -e "s/[0-9a-z_]*mtty/mtty/g" \ -e "s/[0-9a-z_]*mttu/mttu/g" \ -e "s/mttx\([0-9]*\)/x_{\1}/g" \ -e "s/mttex\([0-9]*\)/\\\chi_{\1}/g" \ -e "s/mttui\([0-9]*\)/v_{\1}/g" \ -e "s/mttu\([0-9]*\)/u_{\1}/g" \ -e "s/mtty\([0-9]*\)/y_{\1}/g" \ -e "s/mttz\([0-9]*\)/z_{\1}/g" \ -e "s/mttdx/\\\dot x/g" \ -e "s/mttdz/\\\dot z_/g" \ -e "s/mttdu/\\\dot u_/g" \ -e "s/dot_/ \\\dot /g" \ -e "s/mtta/A/g" \ -e "s/mttb/B/g" \ -e "s/mttc/C/g" \ -e "s/mttd/D/g" \ -e "s/mtte/E/g" \ -e "s/mttg/G/g" \ -e "s/mtti/I/g" \ -e "s/mttm/M/g" \ -e "s/mtto/O/g" \ -e "s/mttv/V/g" \ -e "s/mtty0/y_0/g" \ -e "s/mttu0/u_0/g" \ -e "s/mttx/x/g" \ -e "s/mttz/z/g" \ -e "s/mttyy/Y/g" \ -e "s/mttw/w/g" \ -e "s/mtttf/G/g" \ |
︙ | ︙ | |||
89 90 91 92 93 94 95 | -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ -e "s/omega/\\\omega/g" \ -e "s/zeta/\\\zeta/g" \ -e "s/sin/\\\sin/g" \ -e "s/cos/\\\cos/g" \ -e "s/23/{23}/g" \ | | | > > | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ -e "s/omega/\\\omega/g" \ -e "s/zeta/\\\zeta/g" \ -e "s/sin/\\\sin/g" \ -e "s/cos/\\\cos/g" \ -e "s/23/{23}/g" \ -e "s/+-/ -/g" \ | cat -s | \ sed -e "s/ $//g" | \ tr -s '\012' '\012' \ >junk mv junk $1 |