Overview
Comment: | Added gamma and delta transformations |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
db8ccfe414612f1eb3c3e0f52dffebfc |
User & Date: | gawthrop@users.sourceforge.net on 1997-02-24 13:02:17 |
Other Links: | branch diff | manifest | tags |
Context
1997-02-24
| ||
14:43:21 | Now ignores parameters that are numerical. check-in: 8787884858 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:02:17 | Added gamma and delta transformations check-in: db8ccfe414 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-02-11
| ||
10:06:42 | Removed a debugging line. check-in: 42eba716bb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/latex_tidy from [ef5ed2644d] to [0815275655].
︙ | ︙ | |||
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.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. | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.8 1996/12/31 16:14:53 peterg ## Now handles multi-character subscripts. ## ## 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. |
︙ | ︙ | |||
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | -e "s/\left/\left (/g" \ -e "s/\right/\right )/g" \ -e "s/sqrt/\\\sqrt/g" \ -e "s/theta/\\\theta/g" \ -e "s/tau/\\\tau/g" \ -e "s/alpha/\\\alpha/g" \ -e "s/beta/\\\beta/g" \ -e "s/epsilon/\\\epsilon/g" \ -e "s/lambda/\\\lambda/g" \ -e "s/mu/\\\mu/g" \ -e "s/phi/\\\phi/g" \ -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' \ | > > > | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | -e "s/\left/\left (/g" \ -e "s/\right/\right )/g" \ -e "s/sqrt/\\\sqrt/g" \ -e "s/theta/\\\theta/g" \ -e "s/tau/\\\tau/g" \ -e "s/alpha/\\\alpha/g" \ -e "s/beta/\\\beta/g" \ -e "s/gamma/\\\gamma/g" \ -e "s/delta/\\\delta/g" \ -e "s/epsilon/\\\epsilon/g" \ -e "s/lambda/\\\lambda/g" \ -e "s/mu/\\\mu/g" \ -e "s/phi/\\\phi/g" \ -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ -e "s/omega/\\\omega/g" \ -e "s/zeta/\\\zeta/g" \ -e "s/infty/\\\infty/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' \ |
︙ | ︙ |