Displaying 20 results from an estimated 10000 matches similar to: "Postscript device ignores title if it is too long. (PR#565)"
2001 Apr 14
1
Postscript font bugs (and a suggestion) (PR#914)
Documentation and other bugs with postscript():
1. This code crashes R (it asks for a font that isn't there):
postscript()
plot(0:1,0:1)
text(0.5,0.5,'crash',font=6)
The bug appears to be in the FixupFont routine in plot.c; on line 236,
it checks that the font number is in the range 1..32. Later this
crashes PostScriptStringWidth in devPS.c, because only fonts numbered
1..5
2003 May 29
4
Postscript query: plotting long vectors
Hi,
I have a query about the maximum length of vector that can be plotted
in one go in a postscript driver. Try the following code (in 1.7.0;
version details below):
t <- seq(from=0, to=4*pi, length=200000)
y <- sin(t)
postscript(file="o.ps")
plot(t, y, type="l")
dev.off()
If I view the postscript file o.ps in "gv", it takes many seconds
before eventually
1999 Mar 24
1
Problems with Postscript output
Hi,
I have a problem with the Postscript mechanism of R:
If I save figures in landscape format and try to insert them into a LaTeX
document, I always have to swap the dimensions of the bounding box in line
9 of the Postscript file. Is there any reason why we can't simply swap
left and bottom as well as right and top in line 435 of devPS.c?
Thanks
Arne
2000 Jul 01
0
margins with postscript device
I've been having a problem when printing plots to a HP DeskJet 2500C printer.
This printer, like most inkjet printers, has a large minimum bottom margin.
For most HP inkjet printers, the bottom 1/2" (left 1/2" inch for landscape)
of the page can't be printed too. The postscript device in R has a default of
1/4" margins between the paper edge and the plotting area. This
2009 Jan 19
1
patch for textspecial and defaultfont in xfig
Hello,
The current xfig device lacks the functionality to set the
textspecial flag and use the defaultfont in xfig. This is necessary
when you want to export to xfig and use interpreted text (e.g., $
\frac{1}{e}$ gets interpreted by latex). The attached patch adds this
functionality.
Why would you like to do this?
- Use math in labels (e.g., name your variables $r_{xy}$, do a
2004 Sep 13
1
bitmap() doesn't finish with file in Windows (PR#7224)
Full_Name: Tom Short
Version: 1.9.0
OS: Win2000
Submission from: (NULL) (64.65.255.41)
POSSIBLE WISHLIST, POSSIBLE BUG:
The following code works on Debian, but fails on Windows 2000 with 'Error in
file("test.png", "r") : unable to open connection':
bitmap("test.png")
plot(c(1,2,3))
dev.off()
x = file("test.png","r")
The problem is
2010 Dec 14
1
postscript failure manifests in plot.TukeyHSD
Hello R Developers,
Dear R-developers,
I ran some standard tests with currently (today morning) compiled R release
candidate in Linux R 2.12.1 RC (2010-12-13 r53843). Some of these tests used
plot.TukeyHSD function. This worked OK on the screen (X11 device), but
PostScript file could not be rendered. The following example had the problem
with me:
postscript(file="tukeyplot.ps")
2000 Aug 16
1
Multiple pages with postscript() (PR#635)
Version:
platform = i686-pc-linux-gnu
arch = i686
os = linux-gnu
system = i686, linux-gnu
status =
major = 1
minor = 1.0
year = 2000
month = June
day = 15
language = R
Search Path:
.GlobalEnv, Autoloads, package:base
The function will produce a three page file, but only the first one
has the lwd parameter set. The other pages have reverted to lwd = 1.
I've tried setting the
2004 Mar 16
1
Changing ComputerModern in postscript(...): A first attempt at contributing....
Hi
First off, thanks to all the various R developers, your package is very
impressive.
I'm not sure what the protocols are for contributing, and I've not done this
before, so please excuse nay obvious errors or oversights... Also I'm by no
means an R,TeX/LaTeX, or typesetting expert, I have largely stumbled my way
to this point.
Objective: I'd like to get R postscript(...) to
1999 Sep 06
0
suggestion: postscript paper=user
Dear R developers and users,
I have a suggestion for the postscript device driver.
Now the paer= option only support "a4", "letter",
"legal", "executive". I suggest we add a "user" option
and letter user provide paper size, even like "595x421",
width>height.
For printing purpose, the provided paper size are
nearly enought. But I
1999 Sep 06
0
suggestion: postscript paper=user
Dear R developers and users,
I have a suggestion for the postscript device driver.
Now the paer= option only support "a4", "letter",
"legal", "executive". I suggest we add a "user" option
and letter user provide paper size, even like "595x421",
width>height.
For printing purpose, the provided paper size are
nearly enought. But I
2001 Apr 14
0
Defining extra fonts in the postscript driver
I've been looking at the ellipse package I co-wrote with Ed Chow for
S-Plus a few years ago, cleaning up the documentation now it's been
ported to R (by Jesus Frias, thanks IOsu!) and I'm back as the
maintainer.
One of the things it did which we thought was kind of cute at the time
was to use a few lines of Postscript code to define a font, where the
glyphs were ellipses of various
2004 Mar 15
1
Correct Computer Modern font in postscript(..) output
Hi,
I'm trying to get the correct font used when generating italic text in an R
grahic. I have a set of labels that print correctly except it seems the
italic text is justr a slanted version of the TeX computer modern normal
font... I'm using R v1.8.1 on Windows XP, and I get the same result if I
build the pdf using Adobe Acrobat or using MikTeX
The labels:
2008 Jul 01
1
Autoconf / Windows package building problem for device package
Dear list,
Tadashi Kadowaki has developed a pdf device package
that allows to add hyperlinks and popups
to (currently) text, mtext and rect calls.
The package passes R CMD check (minor warnings) and compiles
on MacOS X and GNU/Linux, but we do not succeed in building
the package for Windows.
The current version of the package can be
checked out as
svn checkout
2005 Aug 19
1
PS driver crashes when no permissions (PR#8078)
Full_Name: Jussi Jousimo
Version: 2.1.1
OS: Linux
Submission from: (NULL) (193.167.195.60)
R 2.1.1 crashes when it is trying to write a file with the postscript driver to
a directory, where the user has no permission to write. For example,
postscript("foo.ps") gives an error message: *** glibc detected *** free():
invalid pointer: 0x08a469b0 ***. The problem is at the PSDeviceDriver
2006 Mar 08
1
Wishlist: Creating horizontal PDFs
It would be nice to easily create horizontal PDF files for standard paper
sizes. For example:
pdf(file, paper="default", horizontal=TRUE)
Currently (R 2.2.1) there is no 'horizontal' argument for the PDF driver.
It looks like the only way to create a horizontal PDF is to manually specify
width and height. For example:
pdf(file, width=11, height=8.5)
Does this feature look
2000 Jun 22
2
Postscript Legends (or not)
I discovered a little problem when using the Windows NT release of R
1.0.1, and it's still there in R 1.1.0.
The boiled down version is this: I want to draw the following plot and
put it into a Postscript file:
x <- c(1,2,3,4); y1 <- c(1,2,3,4); y2 <- c(2,2,2,2)
Fred <- c(1,2)
postscript(file="d:/Bob/Papers/IFM/try2.ps")
plot(x,y1, type="l")
2000 Feb 07
4
Segmentation fault, devPS.c, 0.99.0 (PR#413)
Full_Name: Roger Bivand
Version: 0.99.0
OS: RH Linux 6.1
Submission from: (NULL) (158.37.60.152)
I am working on an interface between R and the GRASS geographical information
system,
written in R, with no dynamically loaded code. I have written full examples, and
tested
then under R 0.90.1, both by entering example() for each function and R CMD
check, both
of which worked without problem.
Under
2000 Jun 07
2
"clipping error in x11()" (PR#564)
There seems to be an error in the X11 display code:
try:
plot(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000),type="l")
points(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000))
it gives a big "V" as expexted. Now zoom in using small xlim and ylim:
plot(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000),type="l",
xlim=c(-5,5),ylim=c(0,5))
2001 Jun 29
1
Problems using Computer Modern fonts
I have been trying to use the Computer Modern fonts in postscript output
from R, but I have run into a few problems and limitations. I did read and
follow the instructions in the documentation.
The first problem is that R sometimes needs to use a minus sign in the
text in plots, but the non-symbol computer modern fonts contain only a
hyphen. There is no way that I can find to tell R to use a