Irubataru / beamer-themes

Some beamer themes
MIT License
49 stars 11 forks source link

Themes break the blocks widths in columns #10

Open rlalik opened 11 months ago

rlalik commented 11 months ago

Following code:

\begin{columns}[onlytextwidth]
 \column{0.5\textwidth}
  \begin{block}{Some title 1}
Lorem ipsum...
  \end{block}

 \column{0.5\textwidth}
  \begin{block}{Some title 2}
Lorem ipsum...
  \end{block}
\end{columns}

will be broken with your themes as the blocks will extend to the whole line width, not the column width as with regular beamer themes.

Irubataru commented 11 months ago

Thanks! I'll have a look at it when I find some time. The block environments are codes using tikz, with the contents being in a node, and that has always been a bit fragile. I've been planning on switching to using a different solution for a while now, but haven't really used or worked on this lately.