Re: Plots for publishing
- To: mathgroup at smc.vnet.net
- Subject: [mg54708] Re: Plots for publishing
- From: LBoogie <lwalker701 at earthlink.net>
- Date: Sun, 27 Feb 2005 01:30:00 -0500 (EST)
- References: <cvhipj$s1s$1@smc.vnet.net> <cvmhm8$3mq$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Thanks. Your suggestion is helpful. I also experimented with placing a line-symbol-reference within the caption. The line-symbol-reference is a legend for the linetypes used in the plot. I center-aligned adjacent horizontal underscores behind the filledTriangle symbol. I did this by nudging the underscores (ALT+left, etc.) This little exercise was futile. There was extra spaces where the underscores were and this just seems too difficult. Any hints? Jens-Peer Kuska wrote: > you can try to use Text[] primitives with characters in your plot > and to use the same symbols later in the caption. > You can make your graphics with > dta1 = Table[{x, Sin[x]}, {x, 0, Pi, Pi/32}]; > dta2 = Table[{x, Cos[x]}, {x, 0, Pi, Pi/32}]; > Show[Graphics[{ > Text["\[FilledCircle]", #] & /@ dta1, > Text["\[FilledUpTriangle]", #] & /@ dta2}], Frame -> True] > > and than using the symbol reference in the caption. > > Regards > > Jens > > > > > "LBoogie" <lwalker701 at earthlink.net> schrieb im Newsbeitrag > news:cvhipj$s1s$1 at smc.vnet.net... > >>Do anyone have suggestions for preparing plots in Mathematica for >>publishing in Publicon? >> >>I need to prepare non-color plots for a journal. In some journals, >>authors put the legend info in the caption. For instance, the symbol >>for data markers are embedded in the caption text. How do I do this >>efficiently? The Legend[] feature creates legends that are too large >>for plots that are 3"x3" so I prefer to place the legend info in the >>caption text. Is there a better way? >> >>Thanks, >>Lawrence >> > > >