I am using flextable, and would like to use my own defined font. Is this possible?
I looked at Is it possible to change flextable default font from arial that says it is, but am not sure what fontname
are available.
I have some fonts from my computer
but they are not recognized when I use them as a fontname and default arial is used. Is there a way to get it recognized by R?
head(iris) %>%
flextable() %>%
font(j=5,fontname='Rage Italic')
head(iris) %>%
flextable() %>%
style(j=5,pr_t=fp_text(color='purple',font.size=20,
font.family='Rage Italic'))
Any suggestions how to get this set up?