答案1
以下是我使用beamer
+ 的方法beamerposter
:
\documentclass{beamer}
\setbeamertemplate{frametitle}[default][center]
\setbeamercolor{background canvas}{bg=black}
\setbeamercolor{normal text}{fg=white}
\setbeamercolor{frametitle}{fg=white}
\usepackage[size=a0,orientation=portrait,scale=1.5]{beamerposter}
\newcommand{\ff}[1]{
\begin{column}{0.2\textwidth}
\noindent\fbox{\parbox{\textwidth}{#1}}
\end{column}
}
\begin{document}
\begin{frame}[t]{Formulas}\centering
\begin{columns}[T]
\ff{Formula 1:
\[E=mc^2\]
}
\ff{Formula 2:
\[\sqrt{x^2+1}\]
}
\ff{Formula 3:
\[ x^n + y^n = z^n \]
}\ff{
Formula 4:
\[ \int_0^1 x^2 + y^2 \ dx \]
}
\end{columns}
\vspace{2cm}
\begin{columns}[T]
\ff{
Formula 5:
\[ x^{2 \alpha} - 1 = y_{ij} + y_{ij} \]
}
\ff{Formula 6:
\[ \sum_{i=1}^{\infty} \frac{1}{n^s}
= \prod_p \frac{1}{1 - p^{-s}} \]
}
\ff{Formula 7:
\[ \int_{a}^{b} x^2 \,dx \]
}
\ff{Formula 8:
\[ \sum_{n=1}^{\infty} 2^{-n} = 1 \]
}
\end{columns}
\end{frame}
\end{document}