Math & Science ⇒ Definition with curly brace
Definition with curly brace
\begin{equation}
f(x) = ....
\end{equation}
where on the right-hand-side there is a system of equations with a
curly brace on the left, giving the values of f(x) for various
intervals. How is it possible to do this?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Definition with curly brace
try the cases environment provided by the amsmath package. A little example:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
f(x)=\begin{cases}
1, & \text{if $x<0$}.\\
0, & \text{otherwise}.
\end{cases}
\end{equation}
\end{document}