David Kaplan
David Kaplan
I have cut out pieces of my document step by step to identify the offending part of the document. The problem is caused by using `kableExtra` to generate a table....
More specifically, the following `.qmd` file: ````markdown --- format: revealjs --- ## kableextra ```{r} #| include: false library(kableExtra) ``` ::: {#tbl-kbex} ```{r} #| echo: false kbl(data.frame(id=1:3,names=letters[1:3])) ``` A table. :::...
Thanks, will give those a shot.
FYI, I tried `xfun::browser_print()` and it does not show the javascript exception, but the title page in the print does not look correct and the pages are always in portrait...
Sorry for the slow response, but I was occupied with the class. No, this was just using straight up `plot(sfobject)`. We tried using `ggplot` and `tmap` also. `tmap` seemed to...
And the data used can be found here: ```r download.file("https://www.davidmkaplan.fr/classes/2023-plan-formation-ird/data.zip","data.zip") unzip("data.zip") library(sf) sfobject = st_read("data/zaf/gadm36_ZAF_0.shp") ````