Beamer 演示文稿中的左对齐表格

Beamer 演示文稿中的左对齐表格

我在使用 beamer 包的演示文稿的框架内有一个表格,现在它位于框架的中心:

\subsection{Results}
\begin{frame}{Results}
\begin{table} 
\begin{tabular}{l|l|l|l|l|l}
six & things & to & fill & the & space \\
\end{tabular}
\caption{Table Caption}
\end{table}
\end{frame}

我想将其移至框架左侧,并将两个图形堆叠在右侧。我该如何将其设置为框架?

谢谢!

答案1

这就是我以前在投影仪幻灯片上设置两列的方法。这只是解决您问题的一种解决方法。您可能需要调整环境中的距离column以及c居中距离。

\subsection{Results}
\begin{frame}{Results}
\begin{columns}[c]
    \begin{column}{5cm}
         \begin{table} 
         \begin{tabular}{l|l|l|l|l|l}
             six & things & to & fill & the & space \\
         \end{tabular}
         \caption{Table Caption}
         \end{table}
    \end{column}
    \hfill
    \begin{column}{5cm}
        \includegraphics[width=5cm]{}
        \includegraphics[width=5cm]{}
    \end{column}
\end{columns}
\end{frame}

编辑如果你只有一个表格,并且希望它左对齐,你可以使用以下命令诡计。也许存在更好的解决方案,但这个似乎有效,所以......

\documentclass{beamer}

\begin{document}

\begin{frame}{Results}
\begin{columns}[c]
    \begin{column}{5cm}
         \begin{table} 
         \begin{tabular}{l|l|l|l|l|l}
             six & things & to & fill & the & space \\
         \end{tabular}
         \caption{Table Caption}
         \end{table}
    \end{column}
    \hspace{5cm}
\end{columns}
\end{frame}

\end{document}

相关内容