Re: [Rd] family="mono" does not work (PR#12931)
[EMAIL PROTECTED] wrote: Full_Name: Jaan Vajakas Version: 2.7.2 OS: Windows XP Submission from: (NULL) (193.40.5.245) When I execute the following code in the R GUI, the text "mono" is printed in monotype font in the first plot, but in normal (sans-serif) font in the remaining three plots: op=par(mfrow=c(2,2)) for (i in 1:4) { hist(1:10,xlab="") mtext("normal",side=1,line=2) mtext("mono",side=1,line=3,family="mono") } par(op) __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel This seems to be specific to the Windows driver. I see it in R running under Wine on Fedora, but not in native R (X11), and not in the pdf driver either, even when run via Wine. -- O__ Peter Dalgaard Ă˜ster Farimagsgade 5, Entr.B c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~ - ([EMAIL PROTECTED]) FAX: (+45) 35327907 __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Re: [Rd] family="mono" does not work (PR#12931)
Peter Dalgaard wrote: [EMAIL PROTECTED] wrote: Full_Name: Jaan Vajakas Version: 2.7.2 OS: Windows XP Submission from: (NULL) (193.40.5.245) When I execute the following code in the R GUI, the text "mono" is printed in monotype font in the first plot, but in normal (sans-serif) font in the remaining three plots: op=par(mfrow=c(2,2)) for (i in 1:4) { hist(1:10,xlab="") mtext("normal",side=1,line=2) mtext("mono",side=1,line=3,family="mono") } par(op) __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel This seems to be specific to the Windows driver. I see it in R running under Wine on Fedora, but not in native R (X11), and not in the pdf driver either, even when run via Wine. I'll see if I can track it down. Duncan Murdoch __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Re: [Rd] family="mono" does not work (PR#12931)
On 19/09/2008 7:10 AM, [EMAIL PROTECTED] wrote: Full_Name: Jaan Vajakas Version: 2.7.2 OS: Windows XP Submission from: (NULL) (193.40.5.245) When I execute the following code in the R GUI, the text "mono" is printed in monotype font in the first plot, but in normal (sans-serif) font in the remaining three plots: op=par(mfrow=c(2,2)) for (i in 1:4) { hist(1:10,xlab="") mtext("normal",side=1,line=2) mtext("mono",side=1,line=3,family="mono") } par(op) This was a windows() device driver bug, as Peter suspected. Now fixed. Thanks for the report! Duncan Murdoch __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel