I get error as
"! LaTeX Error: File `polyglossia.sty' not found.
! Emergency stop.
<read *>
Error: LaTeX failed to compile ase.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See ase.log for more info.
Execution halted"
I tried to installing tinytext again and tidyverse but I couldn't solve the problem.
---
title: "Do Joes"
author:
- Uer Za
header-includes:
- \usepackage{polyglossia}
- \setmainlanguage{turkish}
- \usepackage{booktabs}
- \usepackage{caption}
- \captionsetup[table]{skip=10pt}
output:
bookdown::pdf_document2:
fig_caption: yes
fig_height: 3
fig_width: 4
keep_tex: no
latex_engine: xelatex
number_sections: yes
toc: no
geometry: margin=1in
link-citations: yes
urlcolor: blue
fontsize: 12pt
biblio-style: apalike
---
knitr::opts_chunk$set(echo = TRUE)
R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
summary(cars)
Including Plots
You can also embed plots, for example:
plot(pressure)
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.
tinyTeXis TeX Live based. So you can install missing packages using the TeX Live package management tools, e.g.,tlmgr. – cabohah Mar 29 '23 at 08:18tlmgr install polyglossiato add that – David Carlisle Mar 29 '23 at 08:18tinytex::tlmgr...I don't know R though – David Carlisle Mar 29 '23 at 08:22header-includes:is actually there or not. – samcarter_is_at_topanswers.xyz Mar 29 '23 at 08:46tinytex::tlmgr_install("polyglossia")? – samcarter_is_at_topanswers.xyz Mar 29 '23 at 09:02