宣传海报

宣传海报

我正在寻找一个好的乳胶海报课程。谷歌搜索只给出会议海报。这是一个程序。

有没有专门的课程?或者我需要坚持看会议海报

答案1

如果宣传海报更像传单(大约 A4 大小),那么普通的 beamer 就足够了。如果真的是海报大小(大约 A0),那么就用 beamerposter。是的,根据你想控制多少内容,你可能更适合使用插图软件。不过,以下是我过去用于短期课程宣传的软件:

在此处输入图片描述

\documentclass{beamer}
\usetheme{default} % no need for borders, sidebars, etc.
\setbeamertemplate{navigation symbols}{} % no need for navigation symbols

\begin{document}

\begin{frame}[fragile]{CAE Short Courses for Graduate and REU Students}
% [fragile] since I have a \verb for the email address. Could be removed if you use
% \texttt{} instead.

\begin{columns}[t] % top-aligned columns

\begin{column}{0.5\textwidth}
Basic information
\begin{itemize}
\item Selected topics relevant to research and publication
\item Each course is independent of the others: sign up for one, two, or all
\item Tuesdays and Thursdays, 6:00--9:00 pm
\item 4 meetings (2 weeks) per course
\item No registration fee
\end{itemize}
\end{column}

\begin{column}{0.5\textwidth}
Courses and starting dates
\begin{itemize}
\item \bfseries{Introduction to Linux and UNIX: January 25}
\item \bfseries{Introduction to MATLAB: February 8}
\item \bfseries{Introduction to \LaTeX{}: February 22}
\end{itemize}
Other courses may be offered, depending on interest and availability.
\end{column}

\end{columns}

\begin{center}
To register, or for more information, email Mike Renfro \verb|<[email protected]>|
\end{center}

\end{frame}

\end{document}

相关内容