安装 tinytex::install_tinytex() 后如何解决 RMarkdown 错误
How to solve RMarkdown error after installing tinytex::install_tinytex()
我正在尝试使用 RMardown 创建一个 pdf 文件,并在安装 tinytex 包后如下所示:
tinytex::install_tinytex()
如果我在 .RMd 文档的最顶部设置以下措辞:
output:
pdf_document: default
latex_engine: xelatex
我找回了这个错误
!包输入错误: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
虽然如果我尝试按照其他 post 中的建议报告它(或像这样):
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_document
和 latex_engine
。有谁知道如何解决这个问题?
删除 default
关键字:
---
output:
pdf_document:
latex_engine: xelatex
---
Ï
我正在尝试使用 RMardown 创建一个 pdf 文件,并在安装 tinytex 包后如下所示:
tinytex::install_tinytex()
如果我在 .RMd 文档的最顶部设置以下措辞:
output:
pdf_document: default
latex_engine: xelatex
我找回了这个错误
!包输入错误: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
虽然如果我尝试按照其他 post 中的建议报告它(或像这样):
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_document
和 latex_engine
。有谁知道如何解决这个问题?
删除 default
关键字:
---
output:
pdf_document:
latex_engine: xelatex
---
Ï