your typical beta for example .. let's try non Cairo pdf
pdf("dev20.pdf")
plot(1:20)
text(x=1,y=15, bquote(beta=="5"))
dev.off()
that's fine, but with R's Cairo
CairoPNG("dev20.png", 800, 800)
plot(1:20)
text(x=1,y=15, bquote(beta=="5"))
dev.off()
for the beta there is nothing. Otherwise, my installation of R Cairo works fine.
I'm on Debian bookworm R-4.3.2, package ver Cairo_1.6-2. Thanks!