How to turn the braces in this image to face in the opposite direction in LaTeX?

Asked
Active
Viewed 37 times
0
-
2What's the code you're using to write this? – A.Ellett Dec 24 '21 at 03:29
-
Maybe add a sketch on what you want to prevent possible misunderstanding? Doing literal what you said would be pretty weird. – user202729 Dec 24 '21 at 03:47
-
The less-weird thing you might want to do would be math mode - How to put a brace on the right, not left, to group cases? - TeX - LaTeX Stack Exchange – user202729 Dec 24 '21 at 03:48
1 Answers
2
I am assuming that one of versions 2--4 is that what you want.
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphics}
\begin{document}
\begin{equation}
D_{it}=\left{
\begin{array}{ll}
1& \text{if bank...}\
2& \text{if bank...}\
0&\text{otherwise}
\end{array}
\right.
\end{equation}
\begin{equation}
D_{it}=\left}
\begin{array}{ll}
1& \text{if bank...}\
2& \text{if bank...}\
0&\text{otherwise}
\end{array}
\right.
\end{equation}
\begin{equation}
D_{it}=\left.
\begin{array}{ll}
1& \text{if bank...}\
2& \text{if bank...}\
0&\text{otherwise}
\end{array}
\right{
\end{equation}
\begin{equation}
D_{it}=\left.
\begin{array}{ll}
1& \text{if bank...}\
2& \text{if bank...}\
0&\text{otherwise}
\end{array}
\right}
\end{equation}
\end{document}
Przemysław Scherwentke
- 37,268
