Re: Use of FrameLabel for GraphicsGrid
- To: mathgroup at smc.vnet.net
- Subject: [mg82717] Re: Use of FrameLabel for GraphicsGrid
- From: Amos Leffler <amosleffler at sbcglobal.net>
- Date: Tue, 30 Oct 2007 03:16:50 -0500 (EST)
- References: <fg4d9t$69g$1@smc.vnet.net>
Assuming that the commands for FrameLabel are still compatible there is
information in Wickham-Jones book "Mathematica Graphics". It is an old
book but has lots of useful info on Mathemtica graphics.
Amos Leffler
Art wrote:
> I would like to have a frame label for a GraphicsGrid. There is a
> FrameLabel option but I'm not sure how it works. In the example below, I
> would like to have a title outside at top center of the frame box.
>
> GraphicsGrid[
> Table[
> Plot[Sin[i x + theta], {x, -2 Pi, 2 Pi}],
> {theta, 0, Pi, Pi/2},
> {i, 1, 3}],
> Frame -> True, FrameLabel -> {{None, None}, {None, "Test"}}
> ]
>
> The options for Frame are so flexible for GraphicsGrid that I must be
> using FrameLabel incorrectly.
>
> Thanks,
> Art.
>