是否可以在R中绘制镜像翻转文本?

时间:2014-09-28 16:22:40

标签: r

我知道文本函数中有str参数;能够绘制镜像字母/字符串对我来说会很好...任何想法?

2 个答案:

答案 0 :(得分:10)

你可以玩grImport,但它很复杂

enter image description here

library(grImport)

cat("%!PS 
 /Times-Roman findfont 
 100 scalefont 
 setfont 
 newpath 
 0 0 moveto 
 -1 1 scale
 (hello) show", file="hello.ps")

PostScriptTrace("hello.ps", "hello.xml")
hello <- readPicture("hello.xml")
grid.newpage()
grid.picture(hello)

答案 1 :(得分:3)

这是一个基于全能tikzDevice包的解决方案,由此LaTeX处理字符串

library(tikzDevice)

tikz("mirror.tex", standAlone = TRUE, height=2,width=4)
plot(1,1, xlab="\\reflectbox{Otto and Hannah mostly won't care}")
dev.off()

enter image description here