Beamposter 标题

Beamposter 标题

我在尝试使用包创建一个简单的居中标题时遇到了很多麻烦beamerposter。我完全迷路了。您能提供任何最小的工作示例吗?

当然,我也见过一些简单的例子,比如这里并读过类似的问题这个但我还是不明白。我觉得如果没有不可解密的东西,*.sty它就行不通。我是不是错过了一个简单的解决方案?

笔记:我已经尝试过答案这个问题但对我来说没用。也许可以有不带的东西mwe

答案1

这是一个简单的例子;textpos使用包将块放置在所需位置:

\documentclass{beamer}
\usetheme{Frankfurt}
\usepackage[orientation=landscape,size=a0,scale=1.4,debug]{beamerposter}
\usepackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}


\title[A simple poster]{An example of the \texttt{beamerposter} package}
\author{The Author}
\institute{Thye Institute}
\date{\today}

\begin{document}

\begin{frame}[t]
\begin{textblock}{110}(5,3)
\centering
\maketitle
\end{textblock}

\begin{textblock}{110}(5,20)
\begin{block}{A test block}
Some test text.
\end{block}
\end{textblock}

\begin{textblock}{110}(5,25)
\begin{columns}
\column{.32\textwidth}
\begin{block}{A test block}
Some test text.
\end{block}
\column{.32\textwidth}
\begin{alertblock}{A test alert block}
Some test text.
\end{alertblock}
\column{.32\textwidth}
\begin{exampleblock}{A test example block}
Some test text.
\end{exampleblock}
\end{columns}
\end{textblock}

\end{frame}

\end{document}

在此处输入图片描述

您的海报还有其他选择,例如tikzposter

相关内容