summaryrefslogtreecommitdiff
path: root/support/tcltexed/bht/RCS/latex_math.bht,v
diff options
context:
space:
mode:
Diffstat (limited to 'support/tcltexed/bht/RCS/latex_math.bht,v')
-rw-r--r--support/tcltexed/bht/RCS/latex_math.bht,v105
1 files changed, 105 insertions, 0 deletions
diff --git a/support/tcltexed/bht/RCS/latex_math.bht,v b/support/tcltexed/bht/RCS/latex_math.bht,v
new file mode 100644
index 0000000000..cf3a02645c
--- /dev/null
+++ b/support/tcltexed/bht/RCS/latex_math.bht,v
@@ -0,0 +1,105 @@
+head 1.1;
+access;
+symbols;
+locks
+ mys:1.1; strict;
+comment @# @;
+
+
+1.1
+date 2000.10.12.15.08.06; author mys; state Exp;
+branches;
+next ;
+
+
+desc
+@@
+
+
+1.1
+log
+@Initial revision
+@
+text
+@# Copyright (C) 1999 - Martin Strauss - under terms of GPL
+################################################################################
+# I $Name $Latexbefehl $Buttontext/Giffile $Curserrueckverschiebung #
+################################################################################
+
+set LISTE [list alpha beta gamma delta epsilon varepsilon zeta eta theta \
+ vartheta iota kappa lambda mu nu xi pi varpi rho varrho sigma varsigma \
+ tau upsilon phi varphi chi psi omega\
+ pm mp times div cdot ast dagger ddagger amalg cap cup\
+ uplus sqcap sqcup vee wedge setminus wr circ bullet oslash odot\
+ bigcirc bigtriangleup bigtriangledown oplus ominus otimes\
+ le ge models \
+ ll gg neq\
+ subset supset doteq\
+ subseteq supseteq approx\
+ sqsubseteq sqsupseteq cong\
+ in ni equiv\
+ vdash dashv perp\
+ smile frown parallel\
+ prec succ sim\
+ preceq succeq simeq\
+ asymp bowtie mid\
+ leftarrow rightarrow uparrow downarrow\
+ leftrightarrow updownarrow\
+ leftharpoonup rightharpoonup hookleftarrow hookrightarrow\
+ leftharpoondown rightharpoondown rightleftharpoons mapsto\
+ nwarrow nearrow swarrow searrow\
+ longleftarrow longrightarrow\
+ longleftrightarrow\
+ list aleph hbar wp\
+ imath jmath ell\
+ sonder_strich\
+ nabla partial prime\
+ top bot surd\
+ neg\
+ exists forall emptyset\
+ natural sharp flat\
+ angle backslash infty\
+ clubsuit diamondsuit\
+ spadesuit heartsuit triangle mod \
+ arccos arcsin arctan arg cos cosh cot coth csc deg det dim\
+ exp gcd hom inf ker lg lim liminf limsub ln log max min Pr sec\
+ sin sinh sup tan tanh\
+ vdots nonumber ldots left right]
+foreach x $LISTE {I $x "\\$x" $x 0}
+
+# Alles mit einem grossen Buchstaben am Anfang
+set LISTE [list Gamma Delta Theta Lambda Xi Pi \
+ Sigma Upsilon Phi Omega Re Im Longleftrightarrow\
+ Leftarrow Rightarrow Uparrow Downarrow\
+ Longleftarrow Longrightarrow\
+ Leftrightarrow Updownarrow]
+ set big _big
+foreach x $LISTE {I $x "\\$x" $x$big 0}
+ unset big
+
+# Alles mit einer einfachen Klammer
+set LISTE [list sqrt\
+ hat breve grave bar dot\
+ check acute tilde vec ddot\
+ overline overbrace widehat\
+ underline underbrace widetilde\
+ stackrel pmod]
+foreach x $LISTE {I $x "\\$x{}" $x 1}
+
+# Alles individuelles
+I sqrtn "\\sqrt\[\]{}" sqrtn 3
+I frac "\\frac{}{}" frac 3
+I int "\\int\\limits" int 0
+I oint "\\oint" oint 0
+I sum "\\sum\\limits" sum 0
+I prod "\\prod\\limits" prod 0
+I coprod "\\coprod\\limits" coprod 0
+I atop "{ \\atop }" atop 7
+I choose "{ \\choose }" choose 9
+I math "\$\$" math 1
+I displaymath "\\\[\\\]\n" displaymath 3
+I equation "\\begin{equation}\n \n\\end{equation}\n" equation 17
+
+I text "\\text{}" text 1
+
+unset LISTE@