ggplot2 (3.3.3) の図にメイリオフォントを埋め込んで,PDF出力する手順の自分用メモ.
# Windowsフォントを設定
windowsFonts(Meiryo = windowsFont("Meiryo"))
ggplot() +
...
# geom_text, geom_labelがある場合は,その中でもフォントファミリーを指定
geom_text(..., family = "Meiryo") +
# themeのベースファミリーを指定
theme_**(base_family = "Meiryo")
# deviceにcario_pdfを指定
ggsave(..., device = cario_pdf)
さらに詳細な設定については以下を参照.