Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

What I have: Multi-column beamerposter with blocks in each column

\begin{columns}
    \begin{column}
        \begin{block}{A Block}
            ...
        \end{block}
        \begin{block}{A Block}
            ...
        \end{block}
    \end{column}
    \begin{column}
        \begin{block}{A Block}
            ...
        \end{block}
        \begin{block}{A Block}
            ...
        \end{block}
    \end{column}
\end{columns}

What I would like to do:

\begin{columns}{2}
    \begin{block}{A Block}
        ...
    \end{block}
    \begin{block}{A Block}
        ...
    \end{block}
    \begin{block}{A Block}
        ...
    \end{block}
    \begin{block}{A Block}
        ...
    \end{block}
\end{columns}

Basically what I'm trying to head towards is a beamerposter template that will let me easily switch between portrait and landscape views for instance by setting the columns to 2 (as above) in the portrait version and to 3 in the landscape, with blocks being arranged in order top to bottom as they fit.

Any ideas?

share|improve this question
1  
So you want balanced columns? Well the beamer author explains at several locations in the guide, that he does think a good presentation should be carefully and manually arranged. So you might try another package like multicol for balancing. – bloodworks Feb 9 at 14:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.