标签: r r-markdown
是否可以在R降价文件的标题中加入希腊字母?
我试过了:
playerHealth
而且:
--- title: "α-Amylase" author: "author" date: "8 March 2017" output: pdf_document: keep_tex: true toc: yes toc_depth: 6 ---
答案 0 :(得分:4)
这应该有效,用html提供以下输出:
--- title: \(\alpha\)-Amylase author: "author" date: "8 March 2017" output: html_document toc: yes toc_depth: 6 ---