how can I make left figure scope for the following system of inequalities?
Code: Select all
\begin{eqnarray}
4q+3 < 2q+6 \label{hello1} \\
4q-2q < 6-3 \label{hello2} \\
2q < 3 \label{hello3}
\end{eqnarray}
Code: Select all
\begin{eqnarray}
4q+3 < 2q+6 \label{hello1} \\
4q-2q < 6-3 \label{hello2} \\
2q < 3 \label{hello3}
\end{eqnarray}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
4q+3 &< 2q+6 \label{hello1} \\
4q-2q &< 6-3 \label{hello2} \\
2q &< 3 \label{hello3}
\end{align}
\end{document}
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{cases}
4q+3 < 2q+6 \\
4q-2q < 6-3 \\
2q < 3
\end{cases}
\]
\end{document}
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\usepackage{empheq}
\begin{document}
\begin{empheq}[left=\empheqlbrace]{align}
4q+3 &< 2q+6 \label{eq:1} \\
4q-2q &< 6-3 \label{eq:2} \\
2q &< 3 \label{eq:3}
\end{empheq}
See \eqref{eq:1} and \eqref{eq:3}.
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.