Skip to content
Prev 175768 / 398506 Next

Latex symbols in R (\perp and \parallel)

Lorenzo Isella wrote:
As often, the most helpful "how-to" resource is by Prof. Brian Ripley

http://markmail.org/thread/kauzftprydrhqq5m

if you manage to get around the many lines telling me that I am an idiot.
What works depends on your system. Mine is Windows.

plot(1:5, type="n") 
#http://www.fileformat.info/info/unicode/char/27c2/index.htm
text(1,1, "\u27C2") # does not work for me
#http://www.stat.auckland.ac.nz/~paul/R/CM/AdobeSym.html
text(2,2, "\u22a5") # not for me
text(3,3, "\x5e",font=5) # works for me

Please simplify your examples and make them self-running next time.


Dieter