What should I do to have R correctly show in a legend the equivalent to this latex expression?
\alpha \leq \beta
The following commands handle \alpha and \beta correctly, but not the \leq symbol:
expression(paste(alpha, " leq ", beta))
expression(paste(alpha, " <= ", beta))