local_cmmds.tex: Add 'section' processing to \fref
[thesis.git] / src / local_cmmds.tex
1 % String comparison for \fref
2 \makeatletter
3 \long\def\isequal#1#2{\pdf@strcmp{#1}{#2}}
4 \makeatother
5
6 % An reference index from an unspecified source
7 % usage: \iref{environment}{value}
8 % for example: \iref{equation}{75}
9 \newcommand{\iref}[2]{%
10   \switch%
11   \case{\isequal{#1}{equation}}%
12     ({#2})%
13   \otherwise%
14     {#2}%
15   \endswitch%
16 }
17
18 % A formatted reference from an unspecified source
19 % usage: \fref{environment}{value}
20 % for example: \fref{figure}{75}
21 \newcommand{\fref}[2]{%
22   \switch%
23   \case{\isequal{#1}{equation}}%
24     Eq.~\iref{#1}{#2}%
25   \case{\isequal{#1}{figure}}%
26     Fig.~\iref{#1}{#2}%
27   \case{\isequal{#1}{section}}%
28     Section~\iref{#1}{#2}%
29   \otherwise%
30     \PackageError{fref}{
31       \MessageBreak
32       environment value >#2< unknown \MessageBreak
33     }{possible values are: equation. \MessageBreak}%
34   \endswitch%
35 }
36
37 % References to external figures, equations, etc.
38 % usage: \xref{key}{environment}{value}
39 % for example: \xref{roman12}{figure}{75}
40 \newcommand{\xref}[3]{\citet{#1} \fref{#2}{#3}}
41
42 % Fourier Transform to angular momentum space
43 \newcommand{\Four}[1]{\ensuremath{{\mathcal F}\left\{ {#1} \right\}}}
44 % Fourier Transform to frequency space
45 \newcommand{\Fourf}[1]{\ensuremath{{\mathcal F}_f\left\{ {#1} \right\}}}
46
47 % Symbol denoting the Langevin function
48 \newcommand{\Langevin}{\ensuremath{\mathcal{L}}}
49 % Symbol denoting big-O order of #1
50 \newcommand{\order}[1]{\ensuremath{\mathcal{O}\p({#1})}}
51
52 % Integral from #1 to #2 of #4 with respect to #3
53 \newcommand{\integral}[4]{\ensuremath{\int_{#1}^{#2} {#4} \dd{#3}}}
54 % Integral from -infty to +infty of #2 with respect to #1
55 \newcommand{\iInfInf}[2]{\integral{-\infty}{\infty}{#1}{#2}}
56 % Integral from 0 to +infty of #2 with respect to #1
57 % note that the second char in the name is a capital o, not a 0
58 % because ?Latex doesn't allow digits in command names
59 \newcommand{\iOInf}[2]{\integral{0}{\infty}{#1}{#2}}
60 % #3 evaluated at #2 and #1
61 \newcommand{\evaluated}[3]{\ensuremath{\left.{#3}\right|_{#1}^{#2}}}
62 % #2 evaluated at #1
63 \newcommand{\eval}[2]{\ensuremath{\left.{#2}\right|_{#1}}}
64 % evaluated at infty and -infty
65 \newcommand{\eInfInf}[1]{\evaluated{-\infty}{\infty}{#1}}
66 % evaluated at infty and 0
67 \newcommand{\eOInf}[1]{\evaluated{0}{\infty}{#1}}
68
69 % we do a lot of lim t_T -> infty, so macro that out
70 % lim as #1 -> infty
71 \newcommand{\limInf}[1]{\ensuremath{\lim_{{#1}\rightarrow \infty}}}
72 \newcommand{\limT}{\limInf{t_T}}
73 \newcommand{\normLimT}{\limT \frac{1}{t_T}\ } % '\ ' for a normal space
74 % lim as t_T -> infty of integral from -t_T/2 to t_T/2 of #1 with respect to t
75 \newcommand{\iLimT}[1]{\normLimT \integral{-t_T/2}{t_T/2}{t}{#1}}
76
77 \newcommand{\magSq}[1]{\ensuremath{\left|{#1}\right|^2}}
78 \newcommand{\PSD}{\ensuremath{\operatorname{PSD}}}
79
80 % complex conjugate
81 \newcommand{\conj}[1]{\ensuremath{\overline{#1}}}
82
83 % Symbol denoting the contour C
84 \newcommand{\C}{\ensuremath{\mathcal{C}}}
85 % Integral about contour C of #1 with respect to z
86 \newcommand{\iC}[1]{\integral{\C}{}{z}{#1}}
87 \newcommand{\Reals}{\ensuremath{\mathds{R}}}
88 \newcommand{\Imags}{\ensuremath{\mathds{I}}}
89 \newcommand{\Real}{\ensuremath{\operatorname{Re}}}
90 \newcommand{\Imag}{\ensuremath{\operatorname{Im}}}
91 \newcommand{\ResX}[3]{\operatorname{Res}\left({{#1}={#2}},{#3}\right)}
92 \newcommand{\Res}[2]{\ResX{z}{#1}{#2}}
93 \newcommand{\limX}[2]{\lim_{{#1} \rightarrow {#2}}}
94 \newcommand{\limZ}[1]{\limX{z}{#1}}
95 \newcommand{\limZp}{\limZ{z_p}}
96 \newcommand{\CPV}{\ensuremath{\mathds{P}}}
97
98 \newcommand{\supScript}[1]{\ensuremath{^{\text{#1}}}}
99 \newcommand{\st}{\supScript{st}}
100 \newcommand{\nd}{\supScript{nd}}
101 \newcommand{\rd}{\supScript{rd}}
102 \newcommand{\sth}{\supScript{th}} % th, TH already taken
103
104 \newcommand{\colA}[1]{\textcolor{red}{#1}}
105 \newcommand{\colB}[1]{\textcolor{blue}{#1}}
106 \definecolor{purple}{rgb}{0.8, 0, 0.8}
107 \newcommand{\colAB}[1]{\textcolor{purple}{#1}}
108 \newcommand{\colC}[1]{\textcolor{green}{#1}}
109
110 \newcommand{\cf}{\emph{cf.}} % "confer" or "bring together" / "compare"
111 \newcommand{\ie}{\emph{i.e.}} % "id est" or "in other words"
112 \newcommand{\insilico}{\emph{in silico}} % quasi latin for "on a computer"
113 \newcommand{\invitro}{\emph{in vitro}}   % latin for "in glass"
114 \newcommand{\invivo}{\emph{in vivo}}     % latin for "in living organisms"
115
116 \newcommand{\ensuretext}[1]{\ensuremath{\text{#1}}}
117 % Hyeon and Thirumalai equation number #1
118 \newcommand{\HTeq}[1]{\ensuretext{\emph{H\&T eq.\ {#1}}}}
119 \newcommand{\kT}{\ensuremath{k_B T}}
120 \newcommand{\bt}{\ensuremath{\beta}}
121 \newcommand{\fs}{\ensuremath{f^*}}
122 \newcommand{\dx}{\ensuremath{\Delta x(\fs)}}
123 \newcommand{\dxs}[1]{\ensuremath{\Delta x_{#1}(\fs)}} % for subscripting
124 \newcommand{\FO}{\ensuremath{\Delta F_0^\ddagger(\fs)}}
125 \newcommand{\vD}{\ensuremath{\nu_D(\fs)}}
126 \newcommand{\vDs}[1]{\ensuremath{\nu_{D{#1}}(\fs)}}
127 \newcommand{\kexp}{\ensuremath{\vD e^{-\bt \FO}}}
128 \newcommand{\kexps}[1]{\ensuremath{\vDs{#1} e^{-\bt_{#1} \FO_{#1}}}}
129 \newcommand{\kf}{\ensuremath{k(\fs)}}
130 \newcommand{\kfs}[1]{\ensuremath{k_{#1}(\fs)}}
131 %\newcommand{\avg}[1]{\ensuremath{\left\langle {#1} \right\rangle}}
132 \newcommand{\abs}[1]{\ensuremath{\lvert {#1} \rvert}}
133 \newcommand{\logp}[1]{\ensuremath{\log\!\!\left( {#1} \right)}}
134 % \! is a negative thin space to get the paren closer to the log
135 %\renewcommand{\r}{\ensuremath{r_f}}
136 %\newcommand{\rs}[1]{\ensuremath{r_{f{#1}}}}% to avoid double-subscripting
137 \newcommand{\ep}{\varepsilon}
138
139 \newcommand{\species}[1]{\emph{#1}} % \species{Homo sapiens}
140
141 % Chemicals
142 \newcommand{\diNaHPO}{Na\textsubscript{2}HPO\textsubscript{4}}
143 \newcommand{\NadiHPO}{NaH\textsubscript{2}PO\textsubscript{4}}
144
145 % Workaround for inline minted markup
146 %   http://code.google.com/p/minted/issues/detail?id=15
147 % usage: \imint{language}|value|
148 \NewDocumentCommand\imint{mv}{\texttt{#2}}
149
150 % Aliases for citations
151 \defcitealias{calibcant}{calibcant}
152 \defcitealias{comedi}{Comedi}
153 \defcitealias{cygwin}{Cygwin}
154 \defcitealias{cython}{Cython}
155 \defcitealias{epics}{EPICS}
156 \defcitealias{force-robot}{ForceRobot}
157 \defcitealias{gentoo}{Gentoo}
158 \defcitealias{h5config}{h5config}
159 \defcitealias{hdf5}{HDF5}
160 \defcitealias{interix}{Interix}
161 \defcitealias{king10}{sawsim}
162 \defcitealias{labview}{LabVIEW}
163 \defcitealias{picoforce}{PicoForce}
164 \defcitealias{prefix}{Gentoo Prefix}
165 \defcitealias{punias}{PUNIAS}
166 \defcitealias{pyafm}{pyafm}
167 \defcitealias{pycomedi}{pycomedi}
168 \defcitealias{pymodbus}{pymodbus}
169 \defcitealias{pymol}{PyMol}
170 \defcitealias{pypid}{pypid}
171 \defcitealias{pypiezo}{pypiezo}
172 \defcitealias{python}{Python}
173 \defcitealias{sandal09}{Hooke}
174 \defcitealias{stepper}{stepper}
175 \defcitealias{beazley96}{SWIG}
176 \defcitealias{unfold-protein}{unfold-protein}
177 \defcitealias{wavemetrics-igor}{IGOR Pro}
178 \defcitealias{xcode}{Xcode}
179 \defcitealias{yaml}{YAML}
180
181 \newcommand{\Comedi}{\citetalias{comedi}}
182 \newcommand{\Hooke}{\citetalias{sandal09}}
183 \newcommand{\calibcant}{\citetalias{calibcant}}
184 \newcommand{\hFconfig}{\citetalias{h5config}}
185 \newcommand{\pyafm}{\citetalias{pyafm}}
186 \newcommand{\pypid}{\citetalias{pypid}}
187 \newcommand{\pypiezo}{\citetalias{pypiezo}}
188 \newcommand{\pycomedi}{\citetalias{pycomedi}}
189 \newcommand{\pysawsim}{\texttt{pysawsim}}
190 \newcommand{\sawsim}{\citetalias{king10}}
191 \newcommand{\stepper}{\citetalias{stepper}}
192 \newcommand{\unfoldprotein}{\citetalias{unfold-protein}}