To use Tex Live within tinytex

  1. Just uninstall TinyTex is enough to use other installed LaTeX distribution.
  2. To uninstall TinyTex:

    1
    2
    3
    rm -rf ~/.TinyTex
    rm -rf ~/bin # or just remove the links in ~/bin
    # remove ~/bin from $PATH
  3. To use latexmk instead of tinytex’s emulation:

    1
    2
    > options(tinytex.latexmk.emulation = FALSE)
    > bookdown::render_book("./index.Rmd","bookdown::pdf_book")

Reference

1. https://github.com/yihui/tinytex/issues/48