MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Export as PDF without " for strings

  • To: mathgroup at smc.vnet.net
  • Subject: [mg92785] Re: Export as PDF without " for strings
  • From: ragfield <ragfield at gmail.com>
  • Date: Mon, 13 Oct 2008 06:19:07 -0400 (EDT)
  • References: <gcq0i6$c6u$1@smc.vnet.net>

On Oct 11, 5:52 am, Markus Huber <m... at gmx.at> wrote:
> Hello,
>
> I want to export some graphics containing mathematical signs as
> strings, e.g. "+". Mathematica does not show the " in plots, and
> that's good. However, when I use Export, the " appear. On the other
> hand, selecting the graphics, using the menu entry File->Save
> Selection as ... works fine, i.e. no " are shown.
>
> Let me give a simplified example:
>
> X="+" a;
> Export["~/test.pdf", X]
>
> This produces a pdf with "+" a in it, but I want + a.


X=Style["+" a,ShowStringCharacters->False];
Export["~/test.pdf",X]

-Rob


  • Prev by Date: Nested If
  • Next by Date: UTS discrete math packages: missing DiscreteMath package(s)
  • Previous by thread: Re: Export as PDF without " for strings
  • Next by thread: Re: Export as PDF without " for strings