-
|
I'm sorry, me again ---
title: "Untitled"
format: typst
---
This is some introductory text.
```{r}
x = 1
```Interestingly, Python code works (just replace This is the error: |
Beta Was this translation helpful? Give feedback.
Answered by
cderv
Dec 19, 2024
Replies: 2 comments 25 replies
-
|
Likely an issue with your R installation. |
Beta Was this translation helpful? Give feedback.
25 replies
-
|
Better user experience to be discussed in |
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
This is a matter of graphic device.
format: pdfsets for knitrdev = 'pdf'which meansgrDevices::pdf()will be used.format: typstsets for knitrdev = 'svg'which meansgrDevices::svgwill be used.Now in R, from
?grDevices::svg, see the noteThis is why yo…