summaryrefslogtreecommitdiff
path: root/support/tcltexed/hlp/bre/amsmath.txt
blob: 3c33ff86cf1a4c140b34d37f44e9b5102df983bf (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#################################################################
American Mathmatical Society
#################################################################

All commands below came with package amsmath.
\usepackage{amsmath} ::amsmath::

#################################################################
mathematical subenviroments
#################################################################
Subenviroments must be invoked within a mathmatical enviroment.
for example :
\[\begin{split} ... \end{split}\] 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
subenviroment : split ::split::
\[\begin{split}
 a&=b\\ 
 c&=d
\end{split}\]

allows multible formulas with only one number.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
enviroment : multline ::multline::
\begin{multine}
 a+b+c\\
 +d+e
\end{multine}

for breaking one formula into several lines with only one number
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
enviroment : gather ::gather::
\begin{gather}
 a+b+c\\
 +d+e
\end{gather}


a group of formulas
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
enviroment : align ::align::
\begin{align}
 a&=b & c&=d \\
 e&=f & g&=h \\
 \intertext{and}
 i&=j & k&=l
\end{align}

an array of formulas
-----------------------------------------------------------------
\intertext{text} ::intertext::

allows normal textoutput within this mathmatical enviroment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
enviroment : subequation ::subequation::

mainnumbering gets an additional subnumbering with small letters
\label{} does not distinguish between subnumbers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
subenviroment : ?matrix 
::matrix::pmatrix::bmatrix::vmatrix::Vmatrix::
\[\begin{matrix} 
 1 & 2 & 3 & a \\
 4 & 5 & 6 & b \\
 7 & 8 & 9 & c
\end{matrix}\]

produces a matrix
matrix  : without brackets
pmatrik : with round brackets
bmatrix : with angular brackets
vmatrix : with vertical lines
Vmatrix : with doubled vertical lines
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
subenviroment : cases ::cases::
\[sgn(x)=\begin{cases}
 -1 & \forall\ x<0  \\
  0 & x=0           \\
  1 & \forall\ x>0
\end{cases}\]

for "Cases" constructions
#################################################################
Sonstige Hilfen
#################################################################
size of brackets :
\bigl  \bigr     little bit larger	::bigl::bigr::
\Bigl  \Bigr     faktor 1.5	::Bigl::Bigr::
\biggl \biggr    faktor 2		::biggl::biggr::
\Biggl \Biggr    faktor 2.5	::Biggl::Biggr::
left  right    of the formula

behind this should follow one of these bracket forms "(" "|" "[" ... "]" ")"  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\substack{ \\ ...\\ \text{Hi} ... \\ } ::substack::
example :
\sum_\substack{i=0\\j=1}^\substack{10\\100}

Pushes several lines of indices above or below.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\text{text} ::text::

text within a mathematical enviroment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\sideset{}{} ::sideset::
example :
\sideset{^1_2}{^3_4}\sum

sets indices at the corners ..
left above 1, left below 2, right above 3 and right below 4
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xleftarrow{above} ::xleftarrow::xrightarrow::
xleftarrow[below]{above}
xrightarrow{above}
xrightarrow[below]{above}


An arrow which adapting the necessary length for displaying a text
above itself and optionaly below, too. 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\boxed{formula} ::boxed::

formula with a frame
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\DeclareMathOperator{latex-command}{output}
\DeclareMathOperator*{latex-command}{output}
::DeclareMathOperator::


Allows the declaration of own new mathematical functions like
 \sin \cos etc.
* makes it display indices like \lim with in math enviroment.