I am using the nomnoml
package to create diagrams in combination with rmarkdown
. How can I add greek letters to my arrows?
I have naively tried the following
---
title: "Nomnoml Diagram"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(nomnoml)
```
```{nomnoml, svg=TRUE}
[a]-> \alpha [b]
[c]-> \u03be [d]
```
Both do not work.