similar to: set pdf.options() encoding to UTF-8

Displaying 20 results from an estimated 6000 matches similar to: "set pdf.options() encoding to UTF-8"

2008 Feb 08
2
question_encoding
Hallo, I would like to ask you, for one question. When I export graph to .pdf and I need some czech font, I use a parameter encoding="ISOLatin2.enc" for these special fonts. But exported text is bad. I try ISOLatin1 and MacRoman, but it is some one. I don't know, what Iam doing bad, because in quartz is the graph ok. Sorry....I forget....I have a Mac with Leopard and R ver. 2.6.1.
2007 Jan 25
1
using non-ASCII strings in R packages
Hello dear useRs and wizaRds, I am currently developing a package that will enable to use administrative map of Poland in R plots. Among other things I wanted to include region names in proper Polish language so that they can be used in creating graphics etc. I am working on Windows and when I build the package it is complaining about non-ASCII characters R code files. I was wondering what would
2005 Aug 30
1
Font Encodings --- some work, some don't
Dear R wizards: I believe some more font encoding info. some of the font encodings work, others do not: IsoLatin1, MacRoman, WinAnsi, and PDFDoc seem fine. AdobeStd, AdobeSym, ISOLatin2, ISOLatin9, and TeXtext seem broken, in that the resulting output file is silently corrupt. The font encoding error does not appear in the postscript device driver, and it works fine. It would be nice if
2003 Mar 24
1
writing to file with encodings (PR#2674)
Full_Name: Jean-Pierre Müller Version: 162 OS: Mac OS (carbon) Submission from: (NULL) (130.223.101.43) Encodings valid only in rwading files? The following give identical output files. "ascii" <- c( "\040","\041","\042","\043","\044","\045","\046","\047", # 040-047
2005 Mar 09
3
Decimal point as a comma in postcript and pdf graphics
Hi, after a lengthy but unsuccessfull search I couldn't come up with a solution to the following problem: I would like to have a "comma" instead of a "point" as the decimal point in my graphics, i.e. postscript and pdf files, for I write my thesis in German. My system is: OS: Debian Unstable R-Version: 2.0.1 System locale: de_DE at euro Could someone, please, help
2001 Aug 27
1
foreign characters in R plots
Hi, I am sorry to bother you with such a (presumably) simple question, but I have spent a couple of hours browsing the net and R documentation and came up with no answer to it. My problem is that I need to use Latin2 (ISO8859-2) characters in my plots. Adding an encoding="..." parameter to the postscript function does not solve the problem, as the characters still don't show up.
2001 Sep 24
1
Printing Central European characters
Dear R-users, I have problems with printing Central European (CE) characters (e.g. {\H o} and {\H u}) in graphics made by R. After executing the following code I can see the CE characters with gv on my screen, but I cannot print them on a postscript printer. > postscript(file="proba.ps",enc="ISOLatin2.enc") > plot(0:15,0:15,type="n") > grid(15,15,lty=1)
2007 Nov 19
2
ASCII character set and hyphen
Hi all! To add to my previous posting I want to give some more deatils give a more precise I want to print a hyphen to a pdf() or postscript() device. As the documentaion of postscript says ASCII Character 45("-") is mapped to a minus sign (ASCII Character 95) by default. The advice given is to use "\173" for a hyphen. But, the following code produces a curly brace instead
2005 Nov 07
1
pdf device and TeXencoding?
Dear R wizards: [a] I believe that the pdf device does not yet fully support TeXencoding. (under R-2.2.0, the pdf file created with Textext as font encoding still dies when post-processed by ghostscript.) are there any workarounds, or are there utilities that would allow a TeXencoded font to be re-encoded/converted into ISOLatin, perhaps, which R could then handle beautifully? [b] is there a
2002 Jul 16
0
problem with german fonts (gnu-emacs 21.2.1, ess-5.1.21, w95)
I have a little problem, I cannot solve (at least reasonable fast) I use gnu-emacs 21.2.1 with r-1.5.1 on windows 95. In recent versions I changed "process-coding-system-alist" (C-x[REt]p) to "latin-1". Then I was able to plot german "????" etc(rgui does make this correct). With the new R version this does not work any more. I tried to use some other codings systems
2009 Dec 20
1
utf8 postscript cyrillic
Dear R users, I am running R version 2.10.0 (2009-10-26). I need to prepare an eps graphic with a legend with cyrillic words. I tried setting the encoding parameter of the postscript command, but in vain, nothing seems to work. I tried with CP1251, KOI8-R, UTF-8 and Cyrillic (UTF-8 turned out to not be available under /usr/lib/R/library/grDevices/enc). All I get is ???????? in the final
2003 May 02
1
Metadata - StreamTitle - International language support?
Hello, Can anybody tell me how stream titles, which are non-ASCII, are sent? For example, at ShoutCast.com, there are Asian and European streams that send encoded strings. However, I can't see how to detect what type of encoding they are using. e.g. UTF8, ISOLatin1, etc. If I could work out the encoding, then I can display the names properly. Any differences between how IceCast and
2002 May 28
1
Platform-specific: simple assignments in Rprofile cause core dump (PR#1604)
This only happens on platforms with a faulty implementation of realloc(). Some C libraries do not allow realloc() to be called with a NULL pointer to resize. The assignment ISOLatin1 <- 0:255 in Rprofile then causes a core dump. The attached set of 4 patches should be very safe to use and fix the problem. --please do not edit the information below-- Version: platform = i386-pc-sco3.2v4.2
2008 Oct 31
1
Problems with Sweave and pdf.options(encoding="ISOLatin7") (PR#13234)
Hi, Sweave for some reason does not respect encoding setting in pdf.options. Everything is OK with ps.options. Thus when using non-default encoding for graphs, resulting graphics eps file is correct, but pdf file is not. Workaround is very simple, just use latex->dvips->ps2pdf chain to get the intended pdf document. I tried to find the explanation for this, but I did not find anything. If
2003 Mar 17
0
file encoding
Hello, Is file("out.txt", open="wt", encoding=ISOLatin1) (resp: MacRoman, WinAnsi) broken/unimplemented ? I am trying: zz <- file("out.txt", open="wt", encoding=ISOLatin1) cat(ASCII,file = zz, sep="\n") close(zz) on R162 for MacOs (carbon). Thanks. -- ------------------------------------------------------------------------------ Jean-Pierre
2005 Aug 22
1
Example in pdf() help file (PR#8083)
The example in the help file for pdf() plots the characters outside the plotting area in this for loop: for(i in c(32:255)) { x <- i y <- i points(x, y, pch=i) } The following loop seems to be working as intended for(i in c(32:255)) { x <- (i-31)%%16 y <- (i-31)%/%16 points(x, y, pch=i) } As an extra
2006 Sep 19
4
How to draw a per mille symbol?
Dear list, Following advice posted to this list a while back by Prof Ripley [1], I have been trying to draw a per mille character [2] in an axis label. This should give the correct character: plot(1:10, ylab = "\u2030") but all I get is '"S'. I'm running linux (FC5) and have fonts installed that have the correct character (viewed in the Gnome character map at least).
2002 Sep 09
1
cupsaddsmb - problem; once again
Hello, I posted 2 weeks ago this problem and it is currently not working. First thanks a lot for all the hints and helps. In the attached file I have added (hopefully) all informations. To summarize: I want to setup a print server, which allows the user to download the necessary files for new printers. Installed are (on top of suse 7.1) samba 2.2.6_pre2 and cups 1.1.15_1. Installed the printers,
2009 Sep 30
1
Arial for pdf() on a Mac
Hi, I'd like to use Arial for the font in the PDF's and TIFF's I produce in R on my Mac (running 10.5.5). I've found the following archived help file on how to do it in Linux (http://tolstoy.newcastle.edu.au/R/e4/help/08/08/19847.html ) but don't understand how to do this on my system. Are *.afm files freely available and do they come with the *.enc file that
2007 Sep 30
1
Problem with Palatino font in pdf figures
Dear All, Consider the following piece of code: pdf(file="figure.pdf", family="Palatino") plot(0,0,type='n', xlim=c(-20,20), ylim=c(0,2),xlab="",ylab="",axes=F) text(-1.4,1.168,expression(italic("The font looks different when this is seen with Acrobat Reader!")),xpd=T) dev.off() When viewing the produced figure.pdf with kpdf (on Linux),