Replies: 4 comments 4 replies
-
Which format? Could you share a small self-contained "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.
-
That's not exactly simple to do right now because solution nodes are not easily targetable in the current version of Quarto. I hope to land support for that next week, as part of #4944 . |
Beta Was this translation helpful? Give feedback.
-
Yes.
We hope to get it out by the end of the year. |
Beta Was this translation helpful? Give feedback.
-
Hi, just checking in to see if this can be done now? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Description
How can I add a QED symbol by default at the end of every exercise's solution just to clearly indicate that the exercise is done.
I use:
::: .solution
Solution here.
:::
Beta Was this translation helpful? Give feedback.
All reactions