[Tex/LaTex] Divide a frame into 3 sections in latex beamer

beamer

I need the frame of LaTeX beamer to be divided into three sections as shown. With contents of sections 2 and 3 changing with each item of section 1.How do I do that?

framesectioning

Best Answer

You could use a combination of multicols and minipage:

\documentclass{beamer}
\usepackage{multicol}

\begin{document}

\section{Section 1}
\begin{frame}{Frame 1}
  \begin{multicols}{2}
    \begin{minipage}[b][20ex][t]{\linewidth}
      Section 1
      \begin{itemize}
        \item<1-> Item 1
        \item<2-> Item 2
        \item<3-> Item 3
      \end{itemize}
    \end{minipage}

    \begin{minipage}[b][20ex][t]{\linewidth}
      Section 2

      \only<1>{
        Content 1 in section 2
      }
      \only<2>{
        Content 2 in section 2
      }
      \only<3>{
        Content 3 in section 2
      }
    \end{minipage}

    \begin{minipage}[b][40ex][t]{\linewidth}
      Section 3

      \only<1>{
        Content 1 in section 3
      }
      \only<2>{
        Content 2 in section 3
      }
      \only<3>{
        Content 3 in section 3
      }
    \end{minipage}
  \end{multicols}
\end{frame}

\end{document}
Related Question