Apologies,
library(extrafont)
font_install("fontcm")
loadfonts()
pdf(file = "C:/Users/PSD1.pdf", family = "CM Roman", height = 5, width = 7)
par(family = "CM Roman")
plot(my_pow$PD_1, my_pow$Fre_1, xlab = expression(paste("Particle Diameter [", mu, "m]")), ylab = "Volume Frequency [%]", type = "l", col = "red", xaxp = c(0, 130, 13), yaxp = c(0, 6.5, 13), xlim=c(0, 130), ylim=c(0, 6.5))
dev.off()
embed_fonts(file = "C:/Users/PSD1.pdf")
The data in the my_pow file is irrelevant as I'm having problems just with the Mu greek letter in the title of plots.
Thanks