, , , " " plotmath %...%. ?plotmath points -, TestChars(), , ( ) , :
TestCharsSym <- function(sign = 1, font = 5, oct = TRUE, ...)
{
MB <- l10n_info()$MBCS
r <- if(font == 5) {
sign <- 1
c(32:126, 160:254)
} else {
if(MB) 32:126 else 32:255
}
if (sign == -1) r <- c(32:126, 160:255)
par(pty = "s")
plot(c(-1, 16), c(-1, 16),
type = "n",
xlab = "",
ylab = "",
xaxs = "i",
yaxs = "i",
main = sprintf("sign = %d, font = %d", sign, font)
)
grid(17, 17, lty = 1)
mtext(paste("MBCS:", MB, " Use symbol(\"...\") "))
for(i in r){
try(points(i%%16, i%/%16, pch = sign*i, font = font, ...))
text(i%%16 - 0.3, i%/%16 - 0.3,
if( oct ){
paste0("\\", as.octmode(i))
} else{
i
},
cex = 0.5)
}
}
TestCharsSym()

- OSX, , 240-, pdf() Apple Symbol. *symbol(...), "" plotmath() . :
main=expression(A *symbol('\256')* B)