我使用 beamerposter 制作海报,但遇到了一些麻烦,因为海报的内容没有居中。我尝试做一个最小的例子。这是 tex 文件:
\documentclass[final]{beamer}
\usepackage[T1]{fontenc}
\usetheme{miniposter}
\usepackage[orientation = portrait, size = a0, scale = 1.4]{beamerposter} % e.g. for DIN-A0 poster
\usepackage{lipsum}
\title{Title of the poster}
\author[Author]{Author 1, Author 2 \ldots}
\date{2-5 Juillet 2012}
\institute[INSTITUTE]{Institute of wonderthings}
\begin{document}
\begin{frame}{}
\begin{columns}
\begin{column}[t]{0.64\textwidth}
\begin{block}{first block}
\lipsum[1]
\end{block}
\end{column}
\begin{column}[t]{0.32\textwidth}
\begin{block}{a second block}
\lipsum[2]
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}
对于 beamerposter,您需要创建一种 beamer 主题。在这里,我也尝试放置最少的东西,以便能够看到一些东西。
\ProvidesPackage{beamerthememiniposter}
\mode<presentation>
\setbeamercolor{headline}{bg=blue, fg=white}
\setbeamercolor{footline}{bg=blue, fg=white}
\setbeamercolor{author in head/foot}{fg=white, bg=blue}
\setbeamercolor{title in head/foot}{fg=white, bg=blue}
\setbeamercolor{block title}{fg=white,bg=blue}
\setbeamertemplate{navigation symbols}{} % no navigation on a poster
\setbeamertemplate{headline}{
\leavevmode
\begin{beamercolorbox}[wd=\paperwidth]{headline}
\Huge
\inserttitle\par
\insertauthor\par
\insertinstitute\par
\end{beamercolorbox}
}
\mode<all>
这是输出,看看页面中间的块。它们不是水平居中的。它们稍微靠左一点。
我尝试了一些\centering
环境center
但\hspace*
从未成功。
感谢您的帮助。