beamerposter 的布局问题

beamerposter 的布局问题

我在布局方面遇到了一些问题beamerposter。如您所见,垂直对齐无法正常工作。此外,结论部分太长了。

在此处输入图片描述

\documentclass[final]{beamer}
\mode<presentation>
{
  \usetheme{Berlin}
}
\usepackage[orientation=landscape,size=custom,width=200,height=120,scale=2.4,debug]{beamerposter}

\begin{document}

\begin{frame}[t]{} 

  \begin{columns}[totalwidth=\textwidth]

    %% 1 column
    \begin{column}{0.32\textwidth}
      \begin{block}{Problem}
      \end{block}
    \end{column}

    %% 2 column
    \begin{column}{0.63\textwidth}

      \begin{columns}[totalwidth = \textwidth]
        \begin{column}{0.47\textwidth}
          \begin{block}{Column 1}
          \end{block}           
        \end{column}       
        %% 
        \begin{column}{0.47\textwidth}
          \begin{block}{Column 2}
          \end{block}
        \end{column}     
      \end{columns}

      \begin{block}{Conclusion}
      \end{block}

    \end{column}

  \end{columns}

\end{frame}

\end{document}

答案1

对于垂直对齐,您可以使用 [t] 选项(或 [T] 强制对齐)(请参阅相关问题及其第二个答案,Beamer 中柱的稳定垂直对齐

至于第二点,我认为是列水平居中的问题。不同主题可能有所不同(参见此答案如何在投影仪中居中块和列)。例如,使用defaultCambridgeUSPaloAlto主题,这个问题似乎消失了。我想你必须尝试找到另一个不会导致此问题且适合您的主题。

以下是解决第一个问题的代码:

\documentclass[final]{beamer}
\mode<presentation>
{
  \usetheme{Berlin}
}
\usepackage[orientation=landscape,size=custom,width=200,height=120,scale=2.4,debug]{beamerposter}


\begin{document}

\begin{frame}[t]{} 

  \begin{columns}[totalwidth=\textwidth,t]

    %% 1 column
    \begin{column}{0.32\textwidth}
      \begin{block}{Problem}
      \end{block}
    \end{column}

    %% 2 column
    \begin{column}{0.63\textwidth}

      \begin{columns}[totalwidth = \textwidth]
       \begin{column}{0.47\linewidth}
          \begin{block}{Column 1}
          \end{block}           
        \end{column}       
        %% 
        \begin{column}{0.47\linewidth}
          \begin{block}{Column 2}
          \end{block}
        \end{column}     
      \end{columns}

      \begin{block}{Conclusion}
      \end{block}
    \end{column}

  \end{columns}

\end{frame}

\end{document}

相关内容