I need to create a tree like this tree. The code I have written so far is
\documentclass[11pt, a4paper]{article}
% Packages
\usepackage{amsmath, amssymb, amstext}
\usepackage[linguistics]{forest}
% Margins
\usepackage[a4paper,margin=2cm]{geometry}
% Renew Commands
\renewcommand{\land}{~\&~}
\renewcommand{\implies}{\supset}
\renewcommand{\iff}{\equiv}
% Document
\begin{document}
\begin{forest}
[$(E \implies \lnot (P \lor Q)) \land ((Q \land E) \lor (E \land P))$
[$E \implies \lnot (P \lor Q)$ \\ $(Q \land E) \lor (E \land P)$
[$E \land (Q \lor P)$
[$E$\\$Q \lor P$
[$\lnot (P \lor Q)$
[$\lnot P \land \lnot Q$
[$\lnot P$\\$\lnot Q$
[$Q$
[$\times$]
]
[$P$
[$\times$]
]
]
]
]
]
]
]
]
\end{forest}
\end{document}
Which produces this tree so far. The specifies is that I need a far left column that contains left aligned numbering and a right column that contains left aligned explanation of the rules. It would also be super helpful if you could include a way to have all the nodes be equally spaced out such that the left and right columns are aligned with the nodes. Thanks!
Never mind, I solved it by using tikz-picture instead of forest:
Which produces this:
This works by making the first tree, the main one, that grows down, a second tree that is left of it for numbering, and a the final tree on right for the rules used.