I can't manage to knit my Rmarkdown script to PDF because Latex does not support character as "é" or "è". It returns the following error message:
"! Package inputenc Error: Unicode character ́ (U+0301)
(inputenc) not set up for use with LaTeX."
Is there any way to avoid this issue?
Other question: When knitting my dataframe to PDF, it gots cut because latex isn't doing automatic linebreaks. Is there any option that enable the dataframe to fit to the page?
But actually I found why those characters weren't supported when knitting to PDF: it was because part of the text in the Rmd was pasted from another document and the character was oddly encoded.
For the second question here's what I have:
Anatomy <- read.delim("Anatomy.csv", sep=',',dec=".",stringsAsFactors = F) %>%
kable(Anatomy[1:6,],
format = "pandoc", escape = F,
caption = "Table de données de la description anatomique (exemple des lignes 1 à 6)") %>%
kable_styling(bootstrap_options = c("striped", "hover"),font_size = 7)