下载载微软 Times New Roman 字体包
cd /tmp
curl -LO https://downloads.sourceforge.net/project/corefonts/the%20fonts/final/times32.exe
解压字体
cabextract times32.exe
sudo mkdir -p /usr/share/fonts/msttcore
sudo cp *.TTF /usr/share/fonts/msttcore/
sudo fc-cache -fv
fc-list | grep "Times New Roman"
library(ggplot2)
theme_set(
theme_bw(base_family = "Times New Roman")
)
par(family = "Times New Roman")
plot(1:10, main = "Base R test")
ggplot(mtcars, aes(wt, mpg)) +
geom_point() +
ggtitle("ggplot2 test")
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!
