markdownquarto

Is there a way to make column-margin coexist with overflowing divs?


I am writing a simple document in quarto. I need some more space to accommodate some graphs at one point in my document, so I would like to use the following:

:::{.column-page-left}
[some graphs]
:::

:::{.column-margin}
[some text]
:::

Apparently this does not work. The text included in .column-margin is not put side-by-side with the figures, but only below.

Is there a way to make this work?


Solution

  • Apparently, I may have found an answer to my question after some tests. This gives the intended output

    :::{.column-screen}
    :::{.column-screen-inset-left}
    Some Text 1
    :::
    :::{.column-margin}
    Some Text 2
    :::
    :::
    

    See below:

    enter image description here