Displaying 2 results from an estimated 2 matches for "psfixbb".
2009 Jan 27
0
Windows, gsview: corrupted bbox of .e?ps graphics
...d--
i.e., the bounding box I see cuts off the top half of the figure.
See:
http://euclid.psych.yorku.ca/SCS/Private/agree-MS-buggged.eps
for
the example produced below.
This does view OK with gv on linux, however, the usual tool I use on
linux to find new, tight bbox won't work on this file:
%psfixbb -l agree-MS-bugged.eps
psfixbb: Probloem with new %%BoundingBox: -4 -4 616 796
What caused this was an example from vcd, that I wanted in .eps form.
What I got from
my usual method of Save as Postscript was not at all pleasing--- font
sizes in the
.ps image were way larger than what appeared on...
2017 Oct 22
1
ggplot2 and tikzDevice : problems with accents
...owing ggplot2 graph makes
R hangs when using tikzdevice,? whereas it works using simple pdf device.
######
library(tikzDevice)
library(ggplot2)
options(tikzDefaultEngine = "luatex")
tikzLualatexPackages =c(
? "\\usepackage{tikz}\n",
? "\\usepackage[active,
tightpage,psfixbb]{preview}\n",
? "\\usepackage{fontspec,xunicode}\n",
? "\\PreviewEnvironment{pgfpicture}\n",
? "\\setlength\\PreviewBorder{0pt}\n"
)
x<- rnorm(10)
y<- rnorm(10)
df <- data.frame(x=x, y=y)
#### This example works
tikz(standAlone = TRUE)
ggplot(df, ae...