Re: Figure Title
- To: mathgroup at smc.vnet.net
- Subject: [mg91023] Re: Figure Title
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Mon, 4 Aug 2008 03:21:23 -0400 (EDT)
- Organization: Uni Leipzig
- References: <g6rnrv$7jk$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
plts = MapThread[
Plot[#1[x], {x, 0, 2 Pi},
FrameLabel -> {"x\n" <> #2, None, #1[x], None},
Frame -> True] & , {{Sin, Cos, Tan, Cot}, {"a)", "b)", "c)",
"d)"}}];
GraphicsGrid[Partition[plts, 2]]
??
Regards
Jens
Magician wrote:
> Hi I have an array of figures made using
> Show[ GraphicsArray[ {{..., ...}, {...}}, ....]]
> now i want to add the labels (a), (b), (c) ... to each of the
> subfigures.
> Next I want a title for each of them.
>
> Thanks in Advance!
>