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)
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)