12.1 Vorbereitung
Herunterladen von pandoc
, tinytex
und bookdown
. pandoc
und tinytex
(Abwandlung von LaTeX) werden benötigt, um das book als .pdf file zu exportieren.
# installing/loading the package:
if(!require(installr)) { install.packages("installr"); require(installr)} #load / install+load installr
# Installing pandoc
install.pandoc()
# Download tinytex package
::install_tinytex()
tinytex# Download bookdown package
install.packages("bookdown")
Um alle .Rmd
Dateien zu einem book zu binden muss der Befehl render_book()
in die Konsole eingegeben werden.