Code: Select all
\begin{equation}
a = min \left\{ \begin{array}{ll}
2b\\
\frac{100}{b\cdot a}+c
\end{array}\right.
\label{enacba36}
\end{equation}
Code: Select all
\begin{equation}
a = min \left\{ \begin{array}{ll}
2b\\
\frac{100}{b\cdot a}+c
\end{array}\right.
\label{enacba36}
\end{equation}
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
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools} % loads »amsmath«
\begin{document}
\begin{equation}\label{enacba36}
a = \min
\begin{dcases}
2b \\
\frac{100}{b\cdot a}+c
\end{dcases}
\end{equation}
\end{document}
cases
environment originally provided by the amsmath package.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