I'm trying to create a question in RMarkdown, using r-exams
, based on the Venn diagrams package from TikZ https://www.ctan.org/pkg/venndiagram. I can't get it to work properly.
Here part of my code:
grafika01<-'
\\begin{tikzpicture}
\\begin{venndiagram3sets}
\\fillNotABC
\\end{venndiagram3sets}
\\end{tikzpicture}
'
What's more,
```{r grafica01, echo = FALSE, results = "asis"}
include_tikz(grafika01, name = "grafiko1", markup = "markdown",format = typ,library =
c("arrows"),packages =
c("booktabs","tikz","pgfplots","venndiagram","calc","babel","xkeyval","etoolbox"),
width = "7cm")
```
Thank you.