diff options
author | Karl Berry <karl@freefriends.org> | 2008-09-09 16:28:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-09-09 16:28:15 +0000 |
commit | bd442f863bf52bf3eb2b83ff19216e89f5a64bee (patch) | |
tree | cc2fb9f3516d768220051f839c13e8415dd91fb6 /Master/texmf-dist/doc/latex | |
parent | 10df91768c647958759ccbe829c07e17e5914622 (diff) |
new latex package beamerposter (8sep08)
git-svn-id: svn://tug.org/texlive/trunk@10516 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerposter/README | 20 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/beamerposter/example.tex | 109 |
2 files changed, 129 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/beamerposter/README b/Master/texmf-dist/doc/latex/beamerposter/README new file mode 100644 index 00000000000..bdac2a62993 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerposter/README @@ -0,0 +1,20 @@ +The LaTeX beamerposter package is an extension of the LaTeX beamer and the +a0poster classes in order to create LaTeX posters, e.g. a DIN-A0 size LaTeX +poster in landscape or portrait orientation. Furthermore it is possible +to scale the poster fonts to your needs. + +The package allows you to benefit from the nice color box handling and +alignment in the beamer class (e.g. with rounded corners and shadows) +in order to create quite fast pretty conference posters. + +Features: + * scalable fonts using the fp and type1cm packages + * posters in DIN-A0, DIN-A1, DIN-A2, DIN-A3, DIN-A4, and custom sizes + like double DIN-A0 possible + * still applicable to custom beamer slides, e.g. 16:9 slides for a + widescreen (i.e. 1.78 aspect ratio) + * orientation: landscape or portrait + * debug mode + +Author's name: Philippe Dreuw +License type: lppl
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/beamerposter/example.tex b/Master/texmf-dist/doc/latex/beamerposter/example.tex new file mode 100644 index 00000000000..f34f2416e25 --- /dev/null +++ b/Master/texmf-dist/doc/latex/beamerposter/example.tex @@ -0,0 +1,109 @@ +\documentclass[final]{beamer} + \mode<presentation> + { +% you can chose your theme here: +\usetheme{Berlin} +% further beamerposter themes are available at +% http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php +} + \usepackage{type1cm} + \usepackage{calc} + \usepackage{times} + \usepackage{amsmath,amsthm, amssymb, latexsym} + \boldmath + \usepackage[english]{babel} + \usepackage[latin1]{inputenc} + \usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter} + \graphicspath{{figures/}} + \title[Fancy Posters]{Making Really Fancy Posters with \LaTeX} + \author[Dreuw \& Deselaers]{Philippe Dreuw and Thomas Deselaers} + \institute[RWTH Aachen University]{Human Language Technology and Pattern Recognition,RWTH Aachen University} + \newcommand{\footlinetext}{Lehrstuhl f\"ur Informatik 6 - Computer Science Department - RWTH Aachen University - Aachen, Germany \par Mail: \texttt{<surname>@cs.rwth-aachen.de} \hfill WWW: \texttt{http://www-i6.informatik.rwth-aachen.de}\vskip1ex} + \date{Jul. 31th, 2007} + + \begin{document} + \begin{frame}{} + \vfill + \begin{block}{\large Fontsizes} + \centering + {\tiny tiny}\par + {\scriptsize scriptsize}\par + {\footnotesize footnotesize}\par + {\normalsize normalsize}\par + {\large large}\par + {\Large Large}\par + {\LARGE LARGE}\par + {\veryHuge VeryHuge}\par + {\VeryHuge VeryHuge}\par + {\VERYHuge VERYHuge}\par + \end{block} + \vfill + \vfill + \begin{block}{\large Fontsizes} + \centering + {\tiny tiny}\par + {\scriptsize scriptsize}\par + {\footnotesize footnotesize}\par + {\normalsize normalsize}\par + {\large large}\par + {\Large Large}\par + {\LARGE LARGE}\par + {\veryHuge VeryHuge}\par + {\VeryHuge VeryHuge}\par + {\VERYHuge VERYHuge}\par + \end{block} + \vfill + \begin{columns}[t] + \begin{column}{.48\linewidth} + \begin{block}{Introduction} + + \begin{itemize} + \item[] + \begin{enumerate} + \item some items + \item some items + \item some items + \item some items + \end{enumerate} + \end{itemize} + \end{block} + \end{column} + \begin{column}{.48\linewidth} + \begin{block}{Introduction} + \begin{itemize} + \item some items and $\alpha=\gamma, \sum_{i}$ + \item some items + \item some items + \item some items + \end{itemize} + $$\alpha=\gamma, \sum_{i}$$ + \end{block} + + \begin{block}{Introduction} + \begin{itemize} + \item some items + \item some items + \item some items + \item some items + \end{itemize} + \end{block} + + \begin{block}{Introduction} + \begin{itemize} + \item some items and $\alpha=\gamma, \sum_{i}$ + \item some items + \item some items + \item some items + \end{itemize} + $$\alpha=\gamma, \sum_{i}$$ + \end{block} + \end{column} + \end{columns} + \end{frame} +\end{document} + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%% Local Variables: +%%% mode: latex +%%% TeX-PDF-mode: t |