-
DescriptionI am looking for available features in Quarto allowing me to create mirror margin: aside is on the left margin on left page but on the right margin the right page https://github.com/quarto-dev/quarto-gallery/blob/main/page-layout/tufte.qmd put aside on the right margin. |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Aug 20, 2023
Replies: 2 comments
-
I am guessing you are talking about LaTeX/PDF format, see below an example. ---
title: "Quarto Playground"
format:
pdf:
documentclass: article
classoption: twoside
---
This is a playground for Quarto.
## Page 1
{{< lipsum 2 >}}
::: {.aside}
{{< lipsum 1 >}}
:::
{{< pagebreak >}}
## Page 2
{{< lipsum 2 >}}
::: {.aside}
{{< lipsum 1 >}}
:::
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mcanouil
-
It works. Thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am guessing you are talking about LaTeX/PDF format, see below an example.