you can place the figures with print command, e.g.

pdf("output.pdf")
print(text or textplot,position=c(0,0,.5,.5),more=T)
print(persp(zPERSP_1),position=c(.5,0,1,0),more=T)
print(persp(zPERSP_2),position=c(0,0.5,0.5,1),more=T)
print(persp(zPERSP_3),position=c(.5,.5,1,1))
dev.off() 

pdf has options where you can adjust the size.

I use something like:
 pdf(filename, width=13, height=13, paper=special)

lokk ?pdf
for options
probably you want paper=a4

Felix Wave wrote:
> Hello,
> I have got three graphics.
>
> pdf("output.pdf")
> persp(zPERSP_1)
> persp(zPERSP_2)
> persp(zPERSP_3)
> dev.off() 
>
> I will write all those on one page of a pdf file.
> On the left side I will write some lines text.
>
> Is this possible, positioning graphic and text elements
> in pdf?
> I has already thought I could write a HTML file and 
> convert it anyway to pdf.
>
>
> Maybe anybody does know a toturial or has an idea.
>
> Thanks a lot.
>
> Felix
>
>
>
> My aim (pdf-file):
> -----------------
>
> text text     -----------------
> text text       |             |
> text text     |               |
>               |               |
>               |               |
>               -----------------
>
>
> -----------------     -----------------
> |             |       |               |
> |             |       |               |
> |             |       |               |
> |             |       |               |
> -----------------     -----------------
>
> ______________________________________________
> R-help@stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
>

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to