Note:
Please note that I already viewed a solution provided to the question asked on the post:
and this does not solve my issue since I have a nested structure for the variables and I also found the solution provided to be messy.
Question and My Incomplete Solution
I have a set of variables that are in a hierarchical structure. I would like to display them in a bulleted list with braces to show this hierarchical structure.
I am partially able to obtain the desired outcome with the following code
\begin{equation*}
\left.
\begin{array}{@{}l}
\left.
\begin{array}{@{}l}
\left.
\begin{array}{@{}l }
\text{Variable A}\\
\text{Variable B}
\end{array}\right\} \text{Level 1}\\
\text{Variable C}\\
\text{Variable D}\\
\text{Variable E}\\
\end{array}\right\} \text{Level 2}\\
\text{Variable F}\\
\text{Variable G}\\
\text{Variable H}\\
\end{array}
\right\} \text{Level 3}
\end{equation*}
The output looks as follows:
The issue is that I would like to have a bulleted list so that a bullet appear. Furthermore, I have to place text inside \text{} since I am working with arrays.
Is it possible to achieve the desired outcome with the itemize environment so that bullets appear and the braces also appear?

