]> gitweb.michael.orlitzky.com - mjotex.git/blob - mjo-arrow.tex
mjo-complex.tex: new file with a \compconj (complex conjugate) command.
[mjotex.git] / mjo-arrow.tex
1 %
2 % Things dealing with arrows in a category. Or functions, basically.
3 %
4
5 \input{mjo-common}
6
7 % The identity operator/arrow on its argument.
8 \newcommand*{\identity}[1]{ \operatorname{id}_{{#1}} }
9
10 % The composition of two arrows/functions. For example, the
11 % composition of g with f is \compose{g}{f}\of{x} === g\of{f\of{x}}.
12 \newcommand*{\compose}[2]{ {#1}\circ{#2} }
13
14 % The inverse of an arrow, function, or whatever.
15 \newcommand*{\inverse}[1]{ #1^{-1} }
16
17 % The preimage of the second argument (a set) under the first (a function).
18 \newcommand*{\preimage}[2]{ #1^{-1}\of{#2} }