[Tex/LaTex] How to create a proof tree with LaTeX

bracketsproof-package

How can I realize this proof tree in LaTeX?

enter image description here

Does anyone have an idea how to achieve this?

Best Answer

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\DeclareMathOperator{\bfR}{\mathbf{R}}

\begin{document}
  \begin{equation*}
S_1 \bfR_5\begin{cases}
              S_2  \bfR_2 & \begin{cases} 
                        S_4 \bfR_1 & \\
                        & \\
                        S_5 \bfR_3 & \quad S_6 \bfR_4
                \end{cases} \\
              S_3 \bfR_6 &
      \end{cases}
  \end{equation*}
\end{document}

enter image description here

Related Question