Displaying 3 results from an estimated 3 matches for "cm_test".
Did you mean:
vm_test
2004 Mar 11
1
Difficulties in interaction between R and latex (prosper)
Hello, folks! I'm trying to use R as a graphics program, to make some
pretty graphs that will go into prosper slideshows.
I wrote this fragment, from the R manual, into a file demo.R:
x=seq(-3,3,0.1)
postscript("cm_test.eps", width = 4.0, height = 3.0,
horizontal = FALSE, onefile = FALSE, paper = "special",
family = "ComputerModern")
plot(x, sin(x), type="l")
I fed this into a simplest-possible tex file, named sl_demo.tex, which
uses prosper:...
2009 Jul 02
2
Computer Modern
...azy brown dog",
xlim=c(0,1),
ylim=c(0,1),
col="black",
type="l" ,
lwd=2
)
)
setwd("C:\\R_folder\\CMtests")
postscript("cm_test.eps", width = 4.0, height = 3.0,
horizontal = FALSE, onefile = FALSE, paper = "special",
family = "ComputerModern", encoding = "TeXtext.enc")
print(testPlot)
dev.off()
This produces a plot with courier.
I am using R 2.9....
2008 Nov 15
1
PostScript File Dimensions
Hi List, here I go again.
Well I need to save plotted objects as .eps using the postscript() function,
well I can do that but all resulting object are perfect squared dimensions
(x = y). I need a rectangular output something like x = 2y dimension. Is it
possible? The I’m new to R and postscript image format!
I’m doing this…