[R-lang] Re: Embedding phonetic symbols in R
Sverre Stausland
johnsen@fas.harvard.edu
Wed Jul 20 17:18:25 PDT 2011
Hi Stephanie,
I have also loaded my data into R with UTF-8 encoding. Could you
please provide me with an example where you've created a pdf with IPA
symbols without problems?
Thanks
Sverre
On Wed, Jul 20, 2011 at 7:59 PM, Stephanie S Shih <stephsus@stanford.edu> wrote:
> Hi Sverre,
> This might not be exactly what you're looking for, but as a Windows user, I
> just go with Unicode in my input file and that hasn't given me any problems,
> as long as I specify the encoding in the initial R data read-in.
> For example:
> data <- read.table("inputfile.txt", encoding="UTF-8")
> This prints IPA symbols in graphics in .PDF and in .WMF/.EMF fine--haven't
> specifically tried .PS/.EPS files yet, but I assume it would work as well.
> er...Hope this helps.
> --Stephanie
>
> On Wed, Jul 20, 2011 at 4:16 PM, <ling-r-lang-l-request@mailman.ucsd.edu>
> wrote:
>>
>> Send ling-r-lang-L mailing list submissions to
>> ling-r-lang-l@mailman.ucsd.edu
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>> https://mailman.ucsd.edu/mailman/listinfo/ling-r-lang-l
>> or, via email, send a message with subject or body 'help' to
>> ling-r-lang-l-request@mailman.ucsd.edu
>>
>> You can reach the person managing the list at
>> ling-r-lang-l-owner@mailman.ucsd.edu
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of ling-r-lang-L digest..."
>>
>>
>> Today's Topics:
>>
>> 1. Embedding phonetic symbols in R (Sverre Stausland)
>> 2. Re: Embedding phonetic symbols in R (Levy, Roger)
>> 3. Re: Embedding phonetic symbols in R (Sverre Stausland)
>> 4. Re: Embedding phonetic symbols in R (Bill Poser)
>> 5. Re: Embedding phonetic symbols in R (Donald Derrick)
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Wed, 20 Jul 2011 15:33:49 -0400
>> From: Sverre Stausland <johnsen@fas.harvard.edu>
>> Subject: [R-lang] Embedding phonetic symbols in R
>> To: <r-lang@ling.ucsd.edu>
>> Message-ID:
>>
>> <CACtaF7z1KkrZrzDTiVAnfLwuyTuPj=U9iOzbeJGHwdcHfvXVvw@mail.gmail.com>
>> Content-Type: text/plain; charset="ISO-8859-1"
>>
>> Hi all,
>>
>> I'm sure I'm not the only Windows user out there trying to embed IPA
>> symbols in R graphics and then make a pdf out of it. If anyone knows
>> how to do that, I would appreciate some help. Because I have not
>> succeeded.
>>
>> Here is what I have tried. I'm creating a plot in R with IPA phonetic
>> symbols, using the standard
>> font Doulos SIL
>> (http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSILfont&_sc=1)
>>
>> When attempting to create a pdf of this plot in R using the pdf()
>> function, I will get the following error messages:
>>
>> > pdf(file="C:/~myplot.pdf")
>> > plot.default(my.x,my.y,type="n")
>> > windowsFonts(IPA="TT Doulos SIL")
>> > text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> Error in text.default(my.x, my.y, :
>> Invalid font type
>> In addition: Warning messages:
>> 1: In text.default(my.x, my.y, :
>> font family not found in PostScript font database
>>
>> I've been advised that I can resolve this problem using the Cairo
>> package for R. But I have not succeeded. Here is my call:
>>
>> > library(Cairo)
>> > CairoPDF(file="C:/~myplot.pdf")
>> > plot.default(my.x,my.y,type="n")
>> > windowsFonts(IPA="TT Doulos SIL")
>> > text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > dev.off()
>>
>> It produces a pdf file, but all the IPA symbols come out as boxes.
>>
>> Please note that R has no difficulties producing this plot in its
>> graphic window with IPA symbols. It's only the pdf output I'm having
>> difficulties with.
>>
>> Any help would be appreciated! Further details follow below.
>>
>> > sessionInfo()
>> R version 2.13.1 (2011-07-08)
>> Platform: i386-pc-mingw32/i386 (32-bit)
>>
>> locale:
>> [1] LC_COLLATE=English_United States.1252
>> [2] LC_CTYPE=English_United States.1252
>> [3] LC_MONETARY=English_United States.1252
>> [4] LC_NUMERIC=C
>> [5] LC_TIME=English_United States.1252
>>
>> attached base packages:
>> [1] stats graphics grDevices utils datasets methods base
>>
>> other attached packages:
>> [1] Cairo_1.4-9
>>
>> loaded via a namespace (and not attached):
>> [1] tools_2.13.1
>>
>> > Sys.getlocale()
>> [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
>> States.1252;LC_MONETARY=English_United
>> States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Wed, 20 Jul 2011 19:47:53 +0000
>> From: "Levy, Roger" <rlevy@ucsd.edu>
>> Subject: [R-lang] Re: Embedding phonetic symbols in R
>> To: Sverre Stausland <johnsen@fas.harvard.edu>
>> Cc: "<r-lang@ling.ucsd.edu>" <r-lang@ling.ucsd.edu>
>> Message-ID: <5457010F-48E0-4F76-AD57-A8D3EFDF5D41@ucsd.edu>
>> Content-Type: text/plain; charset="us-ascii"
>>
>> Hi Sverre,
>>
>> You might find the following thread useful:
>>
>>
>> http://pidgin.ucsd.edu/pipermail/r-lang/mailman.ucsd.edu/pipermail/ling-r-lang-l/2010-October/000110.html
>>
>> For me a crucial part of the puzzle was using the cairo_pdf and cairo_ps
>> drivers (kudos to Paul Metzner for pointing this out).
>>
>> Best & let us know if that helps!
>>
>> Roger
>>
>> On Jul 20, 2011, at 1:33 PM, Sverre Stausland wrote:
>>
>> > Hi all,
>> >
>> > I'm sure I'm not the only Windows user out there trying to embed IPA
>> > symbols in R graphics and then make a pdf out of it. If anyone knows
>> > how to do that, I would appreciate some help. Because I have not
>> > succeeded.
>> >
>> > Here is what I have tried. I'm creating a plot in R with IPA phonetic
>> > symbols, using the standard
>> > font Doulos SIL
>> >
>> > (http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSILfont&_sc=1)
>> >
>> > When attempting to create a pdf of this plot in R using the pdf()
>> > function, I will get the following error messages:
>> >
>> >> pdf(file="C:/~myplot.pdf")
>> >> plot.default(my.x,my.y,type="n")
>> >> windowsFonts(IPA="TT Doulos SIL")
>> >> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > Error in text.default(my.x, my.y, :
>> > Invalid font type
>> > In addition: Warning messages:
>> > 1: In text.default(my.x, my.y, :
>> > font family not found in PostScript font database
>> >
>> > I've been advised that I can resolve this problem using the Cairo
>> > package for R. But I have not succeeded. Here is my call:
>> >
>> >> library(Cairo)
>> >> CairoPDF(file="C:/~myplot.pdf")
>> >> plot.default(my.x,my.y,type="n")
>> >> windowsFonts(IPA="TT Doulos SIL")
>> >> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> >> dev.off()
>> >
>> > It produces a pdf file, but all the IPA symbols come out as boxes.
>> >
>> > Please note that R has no difficulties producing this plot in its
>> > graphic window with IPA symbols. It's only the pdf output I'm having
>> > difficulties with.
>> >
>> > Any help would be appreciated! Further details follow below.
>> >
>> >> sessionInfo()
>> > R version 2.13.1 (2011-07-08)
>> > Platform: i386-pc-mingw32/i386 (32-bit)
>> >
>> > locale:
>> > [1] LC_COLLATE=English_United States.1252
>> > [2] LC_CTYPE=English_United States.1252
>> > [3] LC_MONETARY=English_United States.1252
>> > [4] LC_NUMERIC=C
>> > [5] LC_TIME=English_United States.1252
>> >
>> > attached base packages:
>> > [1] stats graphics grDevices utils datasets methods base
>> >
>> > other attached packages:
>> > [1] Cairo_1.4-9
>> >
>> > loaded via a namespace (and not attached):
>> > [1] tools_2.13.1
>> >
>> >> Sys.getlocale()
>> > [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
>> > States.1252;LC_MONETARY=English_United
>> > States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
>>
>> --
>>
>> Roger Levy Email: rlevy@ucsd.edu
>> Assistant Professor Phone: 858-534-7219
>> Department of Linguistics Fax: 858-534-4789
>> UC San Diego Web: http://idiom.ucsd.edu/~rlevy
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 3
>> Date: Wed, 20 Jul 2011 15:50:05 -0400
>> From: Sverre Stausland <johnsen@fas.harvard.edu>
>> Subject: [R-lang] Re: Embedding phonetic symbols in R
>> To: "Levy, Roger" <rlevy@ucsd.edu>
>> Cc: "<r-lang@ling.ucsd.edu>" <r-lang@ling.ucsd.edu>
>> Message-ID:
>>
>> <CACtaF7wZvXNL14pjNSS4o-4SeSt95Mqqp5zd8espw1e6vauuyQ@mail.gmail.com>
>> Content-Type: text/plain; charset="ISO-8859-1"
>>
>> Hi Roger,
>>
>> I've actually seen that thread before, but the only thing I extracted
>> from it was "use Cairo", which I did ... There are some remaining
>> details to be sorted out, I just don't know what they are.
>>
>> Sverre
>>
>> On Wed, Jul 20, 2011 at 3:47 PM, Levy, Roger <rlevy@ucsd.edu> wrote:
>> > Hi Sverre,
>> >
>> > You might find the following thread useful:
>> >
>> >
>> > ?http://pidgin.ucsd.edu/pipermail/r-lang/mailman.ucsd.edu/pipermail/ling-r-lang-l/2010-October/000110.html
>> >
>> > For me a crucial part of the puzzle was using the cairo_pdf and cairo_ps
>> > drivers (kudos to Paul Metzner for pointing this out).
>> >
>> > Best & let us know if that helps!
>> >
>> > Roger
>> >
>> > On Jul 20, 2011, at 1:33 PM, Sverre Stausland wrote:
>> >
>> >> Hi all,
>> >>
>> >> I'm sure I'm not the only Windows user out there trying to embed IPA
>> >> symbols in R graphics and then make a pdf out of it. If anyone knows
>> >> how to do that, I would appreciate some help. Because I have not
>> >> succeeded.
>> >>
>> >> Here is what I have tried. I'm creating a plot in R with IPA phonetic
>> >> symbols, using the standard
>> >> font Doulos SIL
>> >>
>> >> (http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSILfont&_sc=1)
>> >>
>> >> When attempting to create a pdf of this plot in R using the pdf()
>> >> function, I will get the following error messages:
>> >>
>> >>> pdf(file="C:/~myplot.pdf")
>> >>> plot.default(my.x,my.y,type="n")
>> >>> windowsFonts(IPA="TT Doulos SIL")
>> >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> >> Error in text.default(my.x, my.y, ?:
>> >> Invalid font type
>> >> In addition: Warning messages:
>> >> 1: In text.default(my.x, my.y, ?:
>> >> font family not found in PostScript font database
>> >>
>> >> I've been advised that I can resolve this problem using the Cairo
>> >> package for R. But I have not succeeded. Here is my call:
>> >>
>> >>> library(Cairo)
>> >>> CairoPDF(file="C:/~myplot.pdf")
>> >>> plot.default(my.x,my.y,type="n")
>> >>> windowsFonts(IPA="TT Doulos SIL")
>> >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> >>> dev.off()
>> >>
>> >> It produces a pdf file, but all the IPA symbols come out as boxes.
>> >>
>> >> Please note that R has no difficulties producing this plot in its
>> >> graphic window with IPA symbols. It's only the pdf output I'm having
>> >> difficulties with.
>> >>
>> >> Any help would be appreciated! Further details follow below.
>> >>
>> >>> sessionInfo()
>> >> R version 2.13.1 (2011-07-08)
>> >> Platform: i386-pc-mingw32/i386 (32-bit)
>> >>
>> >> locale:
>> >> [1] LC_COLLATE=English_United States.1252
>> >> [2] LC_CTYPE=English_United States.1252
>> >> [3] LC_MONETARY=English_United States.1252
>> >> [4] LC_NUMERIC=C
>> >> [5] LC_TIME=English_United States.1252
>> >>
>> >> attached base packages:
>> >> [1] stats ? ? graphics ?grDevices utils ? ? datasets ?methods ? base
>> >>
>> >> other attached packages:
>> >> [1] Cairo_1.4-9
>> >>
>> >> loaded via a namespace (and not attached):
>> >> [1] tools_2.13.1
>> >>
>> >>> Sys.getlocale()
>> >> [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
>> >> States.1252;LC_MONETARY=English_United
>> >> States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
>> >
>> > --
>> >
>> > Roger Levy ? ? ? ? ? ? ? ? ? ? ?Email: rlevy@ucsd.edu
>> > Assistant Professor ? ? ? ? ? ? Phone: 858-534-7219
>> > Department of Linguistics ? ? ? Fax: ? 858-534-4789
>> > UC San Diego ? ? ? ? ? ? ? ? ? ?Web: ? http://idiom.ucsd.edu/~rlevy
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>>
>>
>>
>> ------------------------------
>>
>> Message: 4
>> Date: Wed, 20 Jul 2011 16:06:54 -0700
>> From: Bill Poser <billposer2@gmail.com>
>> Subject: [R-lang] Re: Embedding phonetic symbols in R
>> To: Sverre Stausland <johnsen@fas.harvard.edu>
>> Cc: "<r-lang@ling.ucsd.edu>" <r-lang@ling.ucsd.edu>
>> Message-ID:
>>
>> <CACPRsRRnZ_5MHU-9To7Z=2ZixA6o54TQkG5Uy-Aw7j6eg2vXMQ@mail.gmail.com>
>> Content-Type: text/plain; charset="utf-8"
>>
>> I hesitate to recommend this technique, but if you are really stuck you
>> could try directly hacking the postscript as described in this post from
>> the
>> time before R supported Unicode:
>> http://babel.ling.upenn.edu/phonetics/archive/Unicode%20in%20R%20Text.htm
>>
>> On Wed, Jul 20, 2011 at 12:50 PM, Sverre Stausland
>> <johnsen@fas.harvard.edu>wrote:
>>
>> > Hi Roger,
>> >
>> > I've actually seen that thread before, but the only thing I extracted
>> > from it was "use Cairo", which I did ... There are some remaining
>> > details to be sorted out, I just don't know what they are.
>> >
>> > Sverre
>> >
>> > On Wed, Jul 20, 2011 at 3:47 PM, Levy, Roger <rlevy@ucsd.edu> wrote:
>> > > Hi Sverre,
>> > >
>> > > You might find the following thread useful:
>> > >
>> > >
>> >
>> > http://pidgin.ucsd.edu/pipermail/r-lang/mailman.ucsd.edu/pipermail/ling-r-lang-l/2010-October/000110.html
>> > >
>> > > For me a crucial part of the puzzle was using the cairo_pdf and
>> > > cairo_ps
>> > drivers (kudos to Paul Metzner for pointing this out).
>> > >
>> > > Best & let us know if that helps!
>> > >
>> > > Roger
>> > >
>> > > On Jul 20, 2011, at 1:33 PM, Sverre Stausland wrote:
>> > >
>> > >> Hi all,
>> > >>
>> > >> I'm sure I'm not the only Windows user out there trying to embed IPA
>> > >> symbols in R graphics and then make a pdf out of it. If anyone knows
>> > >> how to do that, I would appreciate some help. Because I have not
>> > >> succeeded.
>> > >>
>> > >> Here is what I have tried. I'm creating a plot in R with IPA phonetic
>> > >> symbols, using the standard
>> > >> font Doulos SIL
>> > >> (
>> > http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSILfont&_sc=1)
>> > >>
>> > >> When attempting to create a pdf of this plot in R using the pdf()
>> > >> function, I will get the following error messages:
>> > >>
>> > >>> pdf(file="C:/~myplot.pdf")
>> > >>> plot.default(my.x,my.y,type="n")
>> > >>> windowsFonts(IPA="TT Doulos SIL")
>> > >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > >> Error in text.default(my.x, my.y, :
>> > >> Invalid font type
>> > >> In addition: Warning messages:
>> > >> 1: In text.default(my.x, my.y, :
>> > >> font family not found in PostScript font database
>> > >>
>> > >> I've been advised that I can resolve this problem using the Cairo
>> > >> package for R. But I have not succeeded. Here is my call:
>> > >>
>> > >>> library(Cairo)
>> > >>> CairoPDF(file="C:/~myplot.pdf")
>> > >>> plot.default(my.x,my.y,type="n")
>> > >>> windowsFonts(IPA="TT Doulos SIL")
>> > >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > >>> dev.off()
>> > >>
>> > >> It produces a pdf file, but all the IPA symbols come out as boxes.
>> > >>
>> > >> Please note that R has no difficulties producing this plot in its
>> > >> graphic window with IPA symbols. It's only the pdf output I'm having
>> > >> difficulties with.
>> > >>
>> > >> Any help would be appreciated! Further details follow below.
>> > >>
>> > >>> sessionInfo()
>> > >> R version 2.13.1 (2011-07-08)
>> > >> Platform: i386-pc-mingw32/i386 (32-bit)
>> > >>
>> > >> locale:
>> > >> [1] LC_COLLATE=English_United States.1252
>> > >> [2] LC_CTYPE=English_United States.1252
>> > >> [3] LC_MONETARY=English_United States.1252
>> > >> [4] LC_NUMERIC=C
>> > >> [5] LC_TIME=English_United States.1252
>> > >>
>> > >> attached base packages:
>> > >> [1] stats graphics grDevices utils datasets methods base
>> > >>
>> > >> other attached packages:
>> > >> [1] Cairo_1.4-9
>> > >>
>> > >> loaded via a namespace (and not attached):
>> > >> [1] tools_2.13.1
>> > >>
>> > >>> Sys.getlocale()
>> > >> [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
>> > >> States.1252;LC_MONETARY=English_United
>> > >> States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
>> > >
>> > > --
>> > >
>> > > Roger Levy Email: rlevy@ucsd.edu
>> > > Assistant Professor Phone: 858-534-7219
>> > > Department of Linguistics Fax: 858-534-4789
>> > > UC San Diego Web: http://idiom.ucsd.edu/~rlevy
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> >
>> >
>> -------------- next part --------------
>> An HTML attachment was scrubbed...
>> URL:
>> http://mailman.ucsd.edu/pipermail/ling-r-lang-l/attachments/20110720/47ba2d7d/attachment-0001.html
>>
>> ------------------------------
>>
>> Message: 5
>> Date: Wed, 20 Jul 2011 16:14:46 -0700
>> From: Donald Derrick <dderrick@interchange.ubc.ca>
>> Subject: [R-lang] Re: Embedding phonetic symbols in R
>> To: <r-lang@ling.ucsd.edu>
>> Message-ID: <E349F714-2A0E-4EA9-96AB-34733D933B37@interchange.ubc.ca>
>> Content-Type: text/plain; charset="us-ascii"
>>
>> I just use code like:
>>
>> tryCatch(par(family="Doulos SIL"),error=par(family="sans"))
>>
>> If you don't like/have "Doulos SIL", pick another font. Same with the
>> fallback font.
>>
>>
>>
>> DD
>>
>>
>> On 2011-07-20, at 4:06 PM, Bill Poser wrote:
>>
>> > I hesitate to recommend this technique, but if you are really stuck you
>> > could try directly hacking the postscript as described in this post from the
>> > time before R supported Unicode:
>> > http://babel.ling.upenn.edu/phonetics/archive/Unicode%20in%20R%20Text.htm
>> >
>> > On Wed, Jul 20, 2011 at 12:50 PM, Sverre Stausland
>> > <johnsen@fas.harvard.edu> wrote:
>> > Hi Roger,
>> >
>> > I've actually seen that thread before, but the only thing I extracted
>> > from it was "use Cairo", which I did ... There are some remaining
>> > details to be sorted out, I just don't know what they are.
>> >
>> > Sverre
>> >
>> > On Wed, Jul 20, 2011 at 3:47 PM, Levy, Roger <rlevy@ucsd.edu> wrote:
>> > > Hi Sverre,
>> > >
>> > > You might find the following thread useful:
>> > >
>> > >
>> > > http://pidgin.ucsd.edu/pipermail/r-lang/mailman.ucsd.edu/pipermail/ling-r-lang-l/2010-October/000110.html
>> > >
>> > > For me a crucial part of the puzzle was using the cairo_pdf and
>> > > cairo_ps drivers (kudos to Paul Metzner for pointing this out).
>> > >
>> > > Best & let us know if that helps!
>> > >
>> > > Roger
>> > >
>> > > On Jul 20, 2011, at 1:33 PM, Sverre Stausland wrote:
>> > >
>> > >> Hi all,
>> > >>
>> > >> I'm sure I'm not the only Windows user out there trying to embed IPA
>> > >> symbols in R graphics and then make a pdf out of it. If anyone knows
>> > >> how to do that, I would appreciate some help. Because I have not
>> > >> succeeded.
>> > >>
>> > >> Here is what I have tried. I'm creating a plot in R with IPA phonetic
>> > >> symbols, using the standard
>> > >> font Doulos SIL
>> > >>
>> > >> (http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSILfont&_sc=1)
>> > >>
>> > >> When attempting to create a pdf of this plot in R using the pdf()
>> > >> function, I will get the following error messages:
>> > >>
>> > >>> pdf(file="C:/~myplot.pdf")
>> > >>> plot.default(my.x,my.y,type="n")
>> > >>> windowsFonts(IPA="TT Doulos SIL")
>> > >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > >> Error in text.default(my.x, my.y, :
>> > >> Invalid font type
>> > >> In addition: Warning messages:
>> > >> 1: In text.default(my.x, my.y, :
>> > >> font family not found in PostScript font database
>> > >>
>> > >> I've been advised that I can resolve this problem using the Cairo
>> > >> package for R. But I have not succeeded. Here is my call:
>> > >>
>> > >>> library(Cairo)
>> > >>> CairoPDF(file="C:/~myplot.pdf")
>> > >>> plot.default(my.x,my.y,type="n")
>> > >>> windowsFonts(IPA="TT Doulos SIL")
>> > >>> text(my.x,my.y,labels=my.data$words.with.IPA,family="IPA")
>> > >>> dev.off()
>> > >>
>> > >> It produces a pdf file, but all the IPA symbols come out as boxes.
>> > >>
>> > >> Please note that R has no difficulties producing this plot in its
>> > >> graphic window with IPA symbols. It's only the pdf output I'm having
>> > >> difficulties with.
>> > >>
>> > >> Any help would be appreciated! Further details follow below.
>> > >>
>> > >>> sessionInfo()
>> > >> R version 2.13.1 (2011-07-08)
>> > >> Platform: i386-pc-mingw32/i386 (32-bit)
>> > >>
>> > >> locale:
>> > >> [1] LC_COLLATE=English_United States.1252
>> > >> [2] LC_CTYPE=English_United States.1252
>> > >> [3] LC_MONETARY=English_United States.1252
>> > >> [4] LC_NUMERIC=C
>> > >> [5] LC_TIME=English_United States.1252
>> > >>
>> > >> attached base packages:
>> > >> [1] stats graphics grDevices utils datasets methods base
>> > >>
>> > >> other attached packages:
>> > >> [1] Cairo_1.4-9
>> > >>
>> > >> loaded via a namespace (and not attached):
>> > >> [1] tools_2.13.1
>> > >>
>> > >>> Sys.getlocale()
>> > >> [1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United
>> > >> States.1252;LC_MONETARY=English_United
>> > >> States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
>> > >
>> > > --
>> > >
>> > > Roger Levy Email: rlevy@ucsd.edu
>> > > Assistant Professor Phone: 858-534-7219
>> > > Department of Linguistics Fax: 858-534-4789
>> > > UC San Diego Web: http://idiom.ucsd.edu/~rlevy
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> >
>> >
>>
>> -------------- next part --------------
>> An HTML attachment was scrubbed...
>> URL:
>> http://mailman.ucsd.edu/pipermail/ling-r-lang-l/attachments/20110720/b8f5802b/attachment.html
>>
>> ------------------------------
>>
>> _______________________________________________
>> ling-r-lang-L mailing list
>> ling-r-lang-L@mailman.ucsd.edu
>> https://mailman.ucsd.edu/mailman/listinfo/ling-r-lang-l
>>
>>
>> End of ling-r-lang-L Digest, Vol 2, Issue 24
>> ********************************************
>
>
>
> --
> ____________________________
>
> Stephanie Sin-yun Shih
> Ph.D. candidate
> Department of Linguistics
> Stanford University
>
> stephsus@stanford.edu
> http://stanford.edu/~stephsus
>
> ____________________________
>
More information about the ling-r-lang-L
mailing list