My question: How to customize the summary/table of contents in order to have section sided on the right and subsection on the left ?
The expected result is close to the below image
Moreover, I would like to use animate itemize in order to get shaded subsection.
Currently to do it, I do this:
\def\singleletter#1{\rotatebox[origin=B]{90}{#1}}
\makeatletter
\def\parseletters#1{\@tfor \@tempa := #1 \do {\kern2pt\singleletter{\@tempa}}}
\makeatother
\def\verticaltext#1{\rotatebox[origin=c]{-90}{\parseletters{#1}}}
\definecolor{LightGray}{gray}{0.95}
\begin{frame}{Summary}
\setlength\arrayrulewidth{2pt}
\begin{table}[]
\begin{tabularx}{\textwidth}{l|l}
\multirow{4}{*}{\colorbox{LightGray}{\verticaltext{section 1}}} & subsection 1 \\
& subsection 2 \\
& subsection 3 \\
& subsection 4
\end{tabularx}
\end{table}
\end{frame}
A MWE is available here


\documentclassand ends with\end{document}and can be compiled. – Feb 15 '19 at 15:38