jrnold / ggthemes

Additional themes, scales, and geoms for ggplot2
http://jrnold.github.io/ggthemes/
1.33k stars 226 forks source link

Shapes from scale_shape_circlefill don't render in pdf. #90

Closed eliocamp closed 6 years ago

eliocamp commented 6 years ago

The scale works wonderfully when displaying in RStudio but when knited to a pdf they break.

image

I don't know if this is a bug that can be resolved by ggthemes or a limitation of the pdf format.

jrnold commented 6 years ago

It may be that the font that's being used doesn't support those characters.

eliocamp commented 6 years ago

You're right. This was solved by using cario_pdf() as dev so it embeds the fonts -> https://stackoverflow.com/questions/36453126/embedding-fonts-in-ggplot2-charts-in-rmarkdown-documents

Thanks.