I'm trying to render a table in R Markdown with several cells containing Greek letters. I use the following code to generate the table:
table <- readxl::read_excel("path/to/table.xlsx",
sheet = "data")
table %>%
knitr::kable(booktabs = TRUE)
While the output in the console is exactly what I want, I get the following error message when I try to knit the file to a PDF:
! LaTeX Error: Unicode character κ (U+03BA)
not set up for use with LaTeX.
I need to present the table with all the Greek letters. I've found information about getting Greek letters in the headings, but nothing about getting them to work in the body of the table. What is the best way to accomplish this?
Below is an example of the data I'm trying to render.
Any help would be very much appreciated!


