1

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?

2
  • for html or pdf output? (for the former you can inspect your browser's developer tools to see what's going on with the CSS) Commented Jul 1 at 14:18
  • @mb21, it's HTML, but it seems that the column-margin div is not put into the "central" div, and this prevent it to be shown side-by-side. Commented Jul 1 at 21:30

1 Answer 1

0

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.