RE: Re: Constructing a Label
- To: mathgroup at smc.vnet.net
- Subject: [mg93481] RE: [mg93448] Re: Constructing a Label
- From: "Jose Luis Gomez" <jose.luis.gomez at itesm.mx>
- Date: Tue, 11 Nov 2008 07:44:37 -0500 (EST)
- References: <gepb15$sfr$1@smc.vnet.net> <200811060905.EAA15833@smc.vnet.net> <gf1727$ibs$1@smc.vnet.net> <200811080900.EAA14300@smc.vnet.net>
Hello AES Is this the option you are looking for? ShowStringCharacters->False This is the documentation for that option: http://reference.wolfram.com/mathematica/ref/ShowStringCharacters.html It can be used as an option of Style[], which in turn can be used inside Export[]. For example: Export["example.PDF", TraditionalForm[ Style[Grid[ Join[{{"Input", "Output"}}, Table[foo[i, j], {i, 1, 3}, {j, 1, 3}]], Frame -> All], ShowStringCharacters -> False]]] If you execute the previous code without the = ShowStringCharacters->False, then the ugly quote marks will appear in the exported PDF. Hope that helps Jose Mexico -----Mensaje original----- De: AES [mailto:siegman at stanford.edu] Enviado el: S=E1bado, 08 de Noviembre de 2008 03:00 Para: mathgroup at smc.vnet.net Asunto: [mg93448] Re: Constructing a Label Jose: I remember some time back constructing Plots with Labels using some not overly complex string capabilities such that the labeled plots displayed = perfectly well on screen, and looked just as I wanted them to look. When I named these labeled plots, however, and exported or saved them to = PDF files using one or another of the available Export or Save As commands, the labels in the PDF file were surrounded with explicit left and right double quote marks which were not there in the on-screen display (the Label string was otherwise unaltered). Have you encountered this problem? There was some arcane option that had to be invoked in the Label command to stop this happening, which I've since misplaced. Do you recall what this was? Thanks for any info.
- References:
- Re: Constructing a Label
- From: Nikolaus Rath <Nikolaus@rath.org>
- Re: Constructing a Label
- From: AES <siegman@stanford.edu>
- Re: Constructing a Label