]> gitweb.michael.orlitzky.com - mjotex.git/commitdiff
mjo-complex.tex: new file with a \compconj (complex conjugate) command.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 17 Jun 2019 00:02:48 +0000 (20:02 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 17 Jun 2019 00:08:22 +0000 (20:08 -0400)
GNUmakefile
examples.tex
mjo-complex.tex [new file with mode: 0644]
mjotex.sty

index f3352b6c0769a670832fff6c4a2089b2fc2d0876..8f9fc6be76dda4c376ae9f47754fd1037d6caf05 100644 (file)
@@ -17,9 +17,9 @@ PN = examples
 
 # A space-separated list of the mjotex files that you use. The path to
 # mjotex must be contain in your $TEXINPUTS environment variable.
-MJOTEX  = mjo-algorithm.tex mjo-arrow.tex mjo-common.tex mjo-cone.tex
-MJOTEX += mjo-convex.tex mjo-font.tex mjo-linear_algebra.tex mjo-listing.tex
-MJOTEX += mjo-misc.tex mjo-proof_by_cases.tex mjo-theorem.tex
+MJOTEX  = mjo-algorithm.tex mjo-arrow.tex mjo-common.tex mjo-complex.tex
+MJOTEX += mjo-cone.tex mjo-convex.tex mjo-font.tex mjo-linear_algebra.tex
+MJOTEX += mjo-listing.tex mjo-misc.tex mjo-proof_by_cases.tex mjo-theorem.tex
 MJOTEX += mjo-theorem-star.tex mjo-topology.tex mjo.bst
 
 # Use kpsewhich (from the kpathsea suite) to find the absolute paths
index 897396c1061d05706da5b7d21cd187aa6199b76b..a202da7bf69cc28ba3cda55b448f0edf11d6edf7 100644 (file)
     \end{align*}
   \end{section}
 
+  \begin{section}{Complex}
+    We sometimes want to conjugate complex numbers like
+    $\compconj{a+bi} = a - bi$.
+  \end{section}
+
   \begin{section}{Cone}
     The dual cone of $K$ is $\dual{K}$. Some familiar symmetric cones
     are $\Rnplus$, $\Lnplus$, $\Snplus$, and $\Hnplus$.  If cones
diff --git a/mjo-complex.tex b/mjo-complex.tex
new file mode 100644 (file)
index 0000000..23d440f
--- /dev/null
@@ -0,0 +1,4 @@
+% Operations used when dealing with complex numbers.
+
+% The complex conjugate of its argument.
+\providecommand*{\compconj}[1]{ \overline{#1} }
index 039738b792d403090a6e6ad9a8aeeeea5882fdfc..0c5cd76861f4efddf968f45cec77296b6b585e71 100644 (file)
@@ -1,6 +1,7 @@
 \input{mjo-algorithm}
 \input{mjo-arrow}
 \input{mjo-common}
+\input{mjo-complex}
 \input{mjo-cone}
 \input{mjo-convex}
 \input{mjo-font}