-
DescriptionI am using Windows 11 and Quarto version 1.4.549. ---
title: "Teste Figs"
format: html
editor: source
execute:
echo: false
---
```{r setup, include=FALSE}
library(tidyverse)
```
# Elephants
::: {layout-nrow="2"}




:::
# Q-Q Plots for each session in images
Some text.
::: {layout-nrow="2"}




:::
# Q-Q Plots for each session
Some text.
::: {layout-nrow="2"}




:::
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Could you properly format your code and make fully reproducible? 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
engine: knitr
---
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.
```` |
Beta Was this translation helpful? Give feedback.
-
This is by design. Quarto is designed in part to encourage and facilitate reproducibility, and that includes enforcing care about the file-system dependencies in your document. If you want resource dependencies that move out of the current directory, you will need to create a Quarto project so that all required files are in the project directory. |
Beta Was this translation helpful? Give feedback.
This is by design. Quarto is designed in part to encourage and facilitate reproducibility, and that includes enforcing care about the file-system dependencies in your document. If you want resource dependencies that move out of the current directory, you will need to create a Quarto project so that all required files are in the project directory.