Replies: 1 comment
-
Could you fix your post formatting? See below. See papersize option at https://quarto.org/docs/reference/formats/pdf.html#layout. Since underlying it's LaTeX, in addition to the documentation page above I suggest to look on the Internet how do this in LaTeX, then use that with the proper options in Quarto. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` An example: ---
title: "Reproducible Quarto Document"
format:
pdf:
geometry:
- paperwidth=10in
- paperheight=5in
---
This is a reproducible Quarto document using `format: pdf`.
It is written in Markdown.
The end. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Description
This is my current code.
``
title: "Tourist Arrival"
format:
pdf:
latex:
geometry:
- width: "100in"
- height: "100in"
- margin: "0.8in"
``
Beta Was this translation helpful? Give feedback.
All reactions