Greek letter in title of R Markdown document

JAQ*_*ent 4 r r-markdown

Is it possible to include a Greek letter in the title of R markdown document?

I tried this:

---
title: "?-Amylase"
author: "author"
date: "8 March 2017"
output: 
  pdf_document:
  keep_tex: true
toc: yes
toc_depth: 6
---
Run Code Online (Sandbox Code Playgroud)

And this:

---
title: "$\alpha$-Amylase"
author: "author"
date: "8 March 2017"
output: 
  pdf_document:
  keep_tex: true
toc: yes
toc_depth: 6
---
Run Code Online (Sandbox Code Playgroud)

San*_*Dey 5

This should work, with html it gives the following output:

---
title: \(\alpha\)-Amylase
author: "author"
date: "8 March 2017"
output: html_document
toc: yes
toc_depth: 6
---
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明