]> gitweb.michael.orlitzky.com - mjotex.git/blob - mjo-common.tex
Use "big" versions of operators in \binopmany consumers.
[mjotex.git] / mjo-common.tex
1 %
2 % Only the most commonly-used macros. Needed by everything else.
3 %
4
5 % Needed for \mathbb.
6 \usepackage{amsfonts}
7
8 % Needed for \bigtimes.
9 \usepackage{mathtools}
10
11 % Place the argument in matching left/right parntheses.
12 \providecommand*{\of}[1]{ \left({#1}\right) }
13
14 % Group terms using parentheses.
15 \providecommand*{\qty}[1]{ \left({#1}\right) }
16
17 % Group terms using square brackets.
18 \providecommand*{\sqty}[1]{ \left[{#1}\right] }
19
20 % Create a set from the given elements
21 \providecommand*{\set}[1]{\left\lbrace{#1}\right\rbrace}
22
23 % A set comprehension, where the ``such that...'' bar is added
24 % automatically. The bar was chosen over a colon to avoid ambiguity
25 % with the L : V -> V notation. We can't leverage \set here because \middle
26 % needs \left and \right present.
27 \providecommand*{\setc}[2]{\left\lbrace{#1}\ \middle|\ {#2} \right\rbrace}
28
29 % A pair of things.
30 \providecommand*{\pair}[2]{ \left({#1},{#2}\right) }
31
32 % A triple of things.
33 \providecommand*{\triple}[3]{ \left({#1},{#2},{#3}\right) }
34
35 % The Cartesian product of two things.
36 \providecommand*{\cartprod}[2]{ {#1}\times{#2} }
37
38 % The Cartesian product of three things.
39 \providecommand*{\cartprodthree}[3]{ \cartprod{{#1}}{\cartprod{{#2}}{{#3}}} }
40
41 % The direct sum of two things.
42 \providecommand*{\directsum}[2]{ {#1}\oplus{#2} }
43
44 % The direct sum of three things.
45 \providecommand*{\directsumthree}[3]{ \directsum{#1}{\directsum{#2}{#3}} }
46
47 % The factorial operator.
48 \providecommand*{\factorial}[1]{ {#1}! }
49
50 %
51 % Product spaces
52 %
53 % All of the product spaces (for example, R^n) that follow default to
54 % an exponent of ``n'', but that exponent can be changed by providing
55 % it as an optional argument. If the exponent given is ``1'', then it
56 % will be omitted entirely.
57 %
58
59 % The natural n-space, N x N x N x ... x N.
60 \providecommand*{\Nn}[1][n]{
61 \mathbb{N}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
62 }
63
64 % The integral n-space, Z x Z x Z x ... x Z.
65 \providecommand*{\Zn}[1][n]{
66 \mathbb{Z}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
67 }
68
69 % The rational n-space, Q x Q x Q x ... x Q.
70 \providecommand*{\Qn}[1][n]{
71 \mathbb{Q}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
72 }
73
74 % The real n-space, R x R x R x ... x R.
75 \providecommand*{\Rn}[1][n]{
76 \mathbb{R}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
77 }
78
79 % The complex n-space, C x C x C x ... x C.
80 \providecommand*{\Cn}[1][n]{
81 \mathbb{C}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
82 }
83
84 % The space of symmetric n-by-n matrices.
85 \providecommand*{\Sn}[1][n]{
86 \mathcal{S}\if\detokenize{#1}\detokenize{1}{}\else^{#1}\fi
87 }
88
89 %
90 % Basic set operations
91 %
92
93 % The union of its two arguments.
94 \providecommand*{\union}[2]{ {#1}\cup{#2} }
95
96 % A three-argument union.
97 \providecommand*{\unionthree}[3]{ \union{\union{#1}{#2}}{#3} }
98
99 % The intersection of its two arguments.
100 \providecommand*{\intersect}[2]{ {#1}\cap{#2} }
101
102 % A three-argument intersection.
103 \providecommand*{\intersectthree}[3]{ \intersect{\intersect{#1}{#2}}{#3} }
104
105 % An indexed arbitrary binary operation such as the union or
106 % intersection of an infinite number of sets. The first argument is
107 % the operator symbol to use, such as \cup for a union. The second
108 % argument is the lower index, for example k=1. The third argument is
109 % the upper index, such as \infty. Finally the fourth argument should
110 % contain the things (e.g. indexed sets) to be operated on.
111 \providecommand*{\binopmany}[4]{
112 \mathchoice{ \underset{#2}{\overset{#3}{#1}}{#4} }
113 { {#1}_{#2}^{#3}{#4} }
114 { {#1}_{#2}^{#3}{#4} }
115 { {#1}_{#2}^{#3}{#4} }
116 }
117
118 \providecommand*{\intersectmany}[3]{ \binopmany{\bigcap}{#1}{#2}{#3} }
119 \providecommand*{\cartprodmany}[3]{ \binopmany{\bigtimes}{#1}{#2}{#3} }
120 \providecommand*{\directsummany}[3]{ \binopmany{\bigoplus}{#1}{#2}{#3} }
121 \providecommand*{\unionmany}[3]{ \binopmany{\bigcup}{#1}{#2}{#3} }