1

我只是尝试使用 RMardown 创建一个 pdf 文件,并在安装 tinytex 包后如下所示:

tinytex::install_tinytex()

如果我在 .RMd 文档的最顶部设置以下措辞:

output:
  pdf_document: default
  latex_engine: xelatex

我找回了这个错误

!包 inputenc 错误:Unicode 字符 σ (U+03C3) (inputenc) 未设置为与 LaTeX 一起使用。

Try other LaTeX engines instead (e.g., xelatex) if you are using pdflatex. See https://bookdown.org/yihui/rmarkdown-cookbook/latex-unicode.html
Errore: LaTeX failed to compile REPORT-CODES.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See REPORT-CODES.log for more info

如果我尝试按照其他帖子中的建议(或像这样)报告它:

output:
  pdf_document: default
    latex_engine: xelatex

错误是:

Errore in yaml::yaml.load(..., eval.expr = TRUE) : 
  Scanner error: mapping values are not allowed in this context at line 6, column 17
Chiamate: <Anonymous> ... parse_yaml_front_matter -> yaml_load -> <Anonymous>

实际上,第 6 行和第 7 行分别是pdf_documentlatex_engine。有谁知道如何解决这个问题?

4

1 回答 1

1

删除default关键字:

---
output:
  pdf_document: 
    latex_engine: xelatex
---

 Ï

在此处输入图像描述

于 2021-11-05T09:22:47.413 回答