Replies: 2 comments 13 replies
-
I got some help on TeX.stackexchange for the latex side of things – it turns out there's a beamerarticle package which defines beamer macros for use in other classes:
At this stage, I thought I could use the
it almost works, unfortunately, the extra blank line problem hits again, and the last minipage goes to the next line. I looked for a Lua filter in quarto where the I think this would be a very useful addition for pdf documents, matching the behaviour of other formats. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Maybe I've missed something, but I can't seem to manage getting a multi-column layout in pdf format. I think to get the same functionality as in HTML presentations or even Beamer, one would need to use
minipage
environments, which is what beamer uses internally in its definition of a columns environment.It would be quite nice if the same syntax could work in other latex classes as well,
Currently, I'm resorting to raw LaTeX, but that means everything inside the
minipage
environment needs to be in latex, so that quickly defeats the purpose of authoring in quarto markdown in the first place.If one wants markdown input, then the raw latex commands need to be tagged as raw latex, which is arguably a bit nicer, but still clutters quite a lot the document (see "mixed" section below).
I've tried defining a custom div
::: minipage
, but the problem is that they're always followed by an extra blank line, which breaks the LaTeX layout (there cannot be any empty line between two minipages, if they are to be side-by-side).I guess the ideal solution would be:
Illustrative example below:
Beta Was this translation helpful? Give feedback.
All reactions