So this is a piecewise defined function I have that I need to talk about:
f(a,b) = \left\{
\begin{array}{lr}
\text{open} & : \text{RMSD}_\text{s-open}\ge6, \text{RMSD}_\text{closed}\ge6\\
\text{closed} & : \text{RMSD}_\text{closed}\le2 \\
\text{semiopen} & : \text{RMSD}_\text{s-open}\le2\\
\text{transition} & :f(a,b)\notin\{\text{open}, \text{closed}, \text{semiopen}\} \
\end{array}
\right.
So what's the way to align up the colons (conditions) so that it looks all nice and pretty?
Also, if I want to describe transition to be the value of the function when none of the conditions of the previous 3 are satisfied, is the way I wrote it out with f(a,b) not belonging to the set {open,closed,semiopen} a good way of writing it? seems really unprofessional...



lrto al@{}l, should give you what you desire. The@{}removes the inter-column spacing. However, you should consider thecasesenvironment. – Peter Grill Sep 25 '12 at 23:34