Displaying 1 result from an estimated 1 matches for "bbbbbbbbbbbbbbbbbbbb".
2011 Jun 02
4
Use line break at scrip but avoid line break on graphics
Hello list,
I have plots with long strings in main=, ylab= or xlab=. So, in I my script
I use break long lines to avoid lines hiden on my monitor and in sweave
document pages. I use graphics like this
plot(1, main="aaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbb")
but I would like a plot result like this
plot(1, main="aaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbb")
I remember once I saw a meta character like "\n" that avoid this breack line
plot(1, main="aaaaaaaaaaaaaaaaaaaa\(?)
bbbbbbbbbbbbbbbbbbbb")
Does...