Displaying 4 results from an estimated 4 matches for "jandl".
Did you mean:
andl
2000 Dec 28
1
some (may be related) problems with windows(rescale=) (PR#794)
...<- 11.69291
## as a reference
windows(width=width, height=height, rescale="fixed")
plot(0:2,0:2, type="n")
text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)"
,cex=2)
## Here rows are too close together
windows(width=width, height=height, rescale="fit")
plot(0:2,0:2, type="n")
text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person an...
2000 Dec 29
0
Is this a bug? Having cex!=1 before setting par(mai=) gives strange line spacings.
...t;R")
oldmai <- par("mai")
par(cex=1)
par(mai=oldmai)
plot.new()
par(usr=c(0,2,0,2))
par(cex=2)
par1 <- par()
text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)")
dev.off()
# now set cex != 1 before setting par(mai=)
# shouldn't change anything but does change line spacing
windows(width=width, height=height, rescale="R")
par(cex=2)
par(mai=oldmai)
plot.new()
par(usr=c(0,2,0,2))
par(cex=2)
par1 <- par()
text(1,1,"there...
2000 Dec 28
0
some (may be related) problems with windows(rescale=) (PR#795)
...## as a reference
> windows(width=width, height=height, rescale="fixed")
> plot(0:2,0:2, type="n")
> text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)"
> ,cex=2)
>
> ## Here rows are too close together
> windows(width=width, height=height, rescale="fit")
> plot(0:2,0:2, type="n")
> text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know...
2001 Jan 10
0
Re: some problems with windows(rescale=) (PR#794)
...hes we requested, but is correct with respect to those 9 inches we get instead.
> Thus the current implementation does not make sense with devices bigger than the screen.
> ========================
>
> # I intend to layout DIN A3
> width <- 16.53543
> height <- 11.69291
> jandltext <- "there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)"
> windows(width=width, height=height, rescale="fixed")
>
> # using windows() I find out...