在投影仪幻灯片中使用不平衡的多列

在投影仪幻灯片中使用不平衡的多列

我正在使用以下代码:

\begin{frame}[t]{Table of Contents}
     \begin{multicols*}{2}
          \tableofcontents[currentsection,hideothersubsections]
     \end{multicols*}
\end{frame}

但我得到的输出仍然是平衡列。有人知道如何解决这个问题吗?

答案1

我不会multicols与 Beamer 一起使用。Beamer 有自己的列机制,如果您自己拆分目录,则可以更好地控制结果:

\documentclass{beamer}


\begin{document}
    
\begin{frame}
  \frametitle{Table of Contents}
  \begin{columns}[onlytextwidth,T]
    \begin{column}{.45\textwidth}
      \tableofcontents[sections={1-2}]
    \end{column}
    \begin{column}{.45\textwidth}
      \tableofcontents[sections={3-4}]
    \end{column}    
  \end{columns}
\end{frame}


\section{Introduction}
\subsection{Context}
\subsection{Justification of Study}
\subsection{Hypothesis}
\subsection{Objectives}

\begin{frame}
content...
\end{frame}

\section{Methodology}
\subsection{Study Area}
\subsection{Data}
\subsection{Tools}
\subsection{Methods}

\begin{frame}
content...
\end{frame}

\section{Results and Discussion}
\subsection{Results}
\subsection{Discussion}

\begin{frame}
content...
\end{frame}

\section{Conclusion and Perspectives}
\subsection{Conclusion}
\subsection{Perspectives}

\begin{frame}
content...
\end{frame}

    
\end{document}

在此处输入图片描述

相关内容