I wanted to input those nested brackets in this pattern on a portrait-oriented page, which means they are supposed to be upright:
Any idea how to implement this?
UPDATE: I actually lost hope in doing it horizontally so I switched to the normal ones, here is the code I used:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{aligned}
& \text{3D-Space browsed} \\
& \begin{cases}
& \text{Plane 1 browsed} \\
& \begin{cases}
& \begin{aligned}
& \begin{cases}
& \text{Level 7 top} \\
& \text{Level 7 bottom}
\end{cases} \\
& \begin{cases}
& \text{Level 7 top} \\
& \text{Level 7 bottom}
\end{cases}
\end{aligned}
\end{cases}
\quad
\text{Plane 2 browsed} \\
& \begin{cases}
& \begin{aligned}
& \begin{cases}
& \text{Level 7 top} \\
& \text{Level 7 bottom}
\end{cases} \\
& \begin{cases}
& \text{Level 7 top} \\
& \text{Level 7 bottom}
\end{cases}
\end{aligned} \\
& \begin{cases}
& \text{Level 7 top} \\
& \text{Level 7 bottom}
\end{cases}
\end{cases}
\end{cases}
\end{aligned}
\]
\end{document}
But it gives an unusual output:
also, two things are still left for me:
- The linking curves between increments
- The dots signaling the continuation of the pattern.
Any input would be appreciated. Also, I checked the links provided by Zarko but my dumb brain did not know how to incorporate the code.




