Hello,
This may be dumb or obvious, but I am learning to make sty files and I have been modifying some code from the beamerposter project. Anyway, I have this:
\def\postercolumn#1
{\begin{column}{#1\textwidth}
\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 end block. In effect, I want this:
\def\postercolumn#1
{\begin{column}{#1\textwidth}
\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 doesn't work because the compiler gets confused and thinks the \endpostercolumn section is closing. Is there some obvious way to get around that?
Thank you.