I am using this formula:
0\leq y\leq 1\leq x\leq 2 = \left\{\begin{array}{ll} 0\leq y\leq 1 \\ 1\leq x\leq 2\end{array} \right.
which gives me this:
I would like to ask how I can rewrite it using right curly brace. Thanks.
If this is what you want :
Try like this (as per my comment)
\documentclass{article}
\begin{document}
\[
0\leq y\leq 1\leq x\leq 2 = \left\{\begin{array}{ll} 0\leq y\leq 1 \\ 1\leq x\leq 2\end{array} \right\}
\]
\end{document}
Found my solution from this post, it should be:
$$\left.\begin{array}{r}0\leq y\leq 1\\1\leq x\leq 2 \end{array} \right\} \Rightarrow 0\leq y\leq 1\leq x\leq 2$$
which gives me just what I need:
\left needs something on its right to act on it ... \begin{array} isn't something that it can act on ...
– koleygr
Mar 09 '20 at 10:19
\right\}instead of\right.– koleygr Mar 09 '20 at 09:49\leftas a pair. – J. Doe Mar 09 '20 at 09:56