0

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

1 Answers1

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}

enter image description here