It may be silly or obvious, but I am involved in creating style files and I modified the code from the beamerposter project. Anyway, I have this:
\def\postercolumn
{\begin{column}{
\begin{beamercolorbox}[center,wd=\textwidth]{postercolumn}
\begin{minipage}[T]{.95\textwidth}
%\parbox[t][\columnheight]{\textwidth}
}
\def\endpostercolumn
{
\end{minipage}
\end{beamercolorbox}
\end{column}
}
Obviously, the \ parbox command is commented out, but I want it to start there and end in the final block. Essentially, I want this:
\def\postercolumn
{\begin{column}{
\begin{beamercolorbox}[center,wd=\textwidth]{postercolumn}
\begin{minipage}[T]{.95\textwidth}
\parbox[t][\columnheight]{\textwidth}{
}
\def\endpostercolumn
{
}
\end{minipage}
\end{beamercolorbox}
\end{column}
}
But naturally, this does not work, because the compiler gets confused and thinks that the \ endpostercolumn section is closing. Is there an obvious way around this?
Thank.
source
share