On 18-May-04 Andersson, Henrik wrote:
> plot(1:10,xlab=expression(^{14}*C)) # I want to have a superscript
> with
> nothing in front, but it doesn't work
>
> plot(1:10,xlab=expresssion(.^{14}*C)) # this works, but is not
> beautiful
Try:
plot(1:10,xlab=expresssion(""^{14}*C))
??
Ted.