The delimiters recognized by LaTeX include
\left \{ ... \right \[ produces a legal pair.
In cases where only one delimiter is desired, it
is possible to make the matching delimiter "invisible" by typing a
period (.) after the command, i.e.,
\left. or \right..
\[ \left\{
\begin{array}{ccc}
a & b & c \\
d & e & f \end{array}
\right\} \]
This should be displayed something like (insofar as it can be rendered in
"ascii art"):
( a b c )
- -
( d e f )
Note that the \[ ... \] set this off as
Display Math, and that the Array Environment
is used to generate the three centered columns inside the braces.
\[ f(x) =
\left\{ \begin{array}{l}
0, x < 0 \\ 1, x = 0 \\
2, x > 0 \end{array} \right. \]
will be displayed as
( 0, x < 0
f(x) = - 1, x = 0
( 2, x > 0
Note that the "invisible" \right delimiter is specified using
a "period".