KatexR not showing up in rmarkdown

When trying to knit katexR in an Rmd document, I get the following error:

pandoc: Could not fetch /Library/Frameworks/R.framework/Versions/3.2/Resources/library/katexR/htmlwidgets/lib/katex/fonts/KaTeX_AMS-Regular.woff2

      

Any ideas why this might be?

```{r}
# devtools::install_github("timelyportfolio/katexR")
library(katexR)
katex("\\KaTeX")
```

      

+3


source to share


1 answer


If anyone else is listening, try reinstalling with

devtools::install_github("timelyportfolio/katexR")

      



See the discussion on this Github issue for reference . My test to see if it works is to knit a vignette.

I would love the feedback. Thank.

+1


source







All Articles