Re: [R] lattice + plotmath: how to get a variable in bold face?

2011-06-02 Thread Marius Hofert
Dear Dennis, Dear Peter, thank you very much, as.character() worked perfectly. Nice solution :-) All the best, Marius On 2011-06-03, at 03:42 , Dennis Murphy wrote: > If you're trying to figure out a way to embolden a Greek letter in > plotmath, it ain't gonna happen. From the plotmath help pa

Re: [R] lattice + plotmath: how to get a variable in bold face?

2011-06-02 Thread Peter Ehlers
On 2011-06-02 15:50, Marius Hofert wrote: Dear all, How can I get a bold "1000" in the title? I would like to use a variable (as opposed to putting in "1000" directly). library(lattice) N<- 1000 xyplot(0~0, xlab.top=list(label=as.expression(bquote(bold("foo" ~ .(N) ~ "bar"))), font=2, cex=1.2

[R] lattice + plotmath: how to get a variable in bold face?

2011-06-02 Thread Marius Hofert
Dear all, How can I get a bold "1000" in the title? I would like to use a variable (as opposed to putting in "1000" directly). library(lattice) N <- 1000 xyplot(0~0, xlab.top=list(label=as.expression(bquote(bold("foo" ~ .(N) ~ "bar"))), font=2, cex=1.2)) ## => "font=2" is ignored (of course)