Replies: 3 comments 4 replies
-
Could you share a small "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. 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.
```` |
Beta Was this translation helpful? Give feedback.
-
Update: Following intructions from Quarto cross-references doc, I managed to remove the name "Listing" adding an empty string
However, it doesn't seem to be an option for removing the listing's number |
Beta Was this translation helpful? Give feedback.
-
You might need to use LaTeX partials here, see https://quarto.org/docs/journals/templates.html#latex-partials. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Considering the following code block in a .qmd file:
It is converted in Latex's pdf output to something like this:
I have already tried including in header the following commands, but nothing changed:
Here is a minimal working example:
How can I rename the listing caption or remove it entirely with its number?
Beta Was this translation helpful? Give feedback.
All reactions