MathGroup Archive 2006

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

Search the Archive

Re: tableform question

  • To: mathgroup at smc.vnet.net
  • Subject: [mg70058] Re: tableform question
  • From: dimmechan at yahoo.com
  • Date: Sun, 1 Oct 2006 04:10:32 -0400 (EDT)
  • References: <efldbk$d4k$1@smc.vnet.net>

Finally I found something close to what I wanted working as follows,

gr = DisplayForm[
GridBox[{{"", "global rules stored with\nthe head", "global rules
stored with\nan argument", "local rules"},
{"evaluate rhs", "=", "^=", "->"}, {"delay rhs", ":=", "^:=", ":>"}},
RowLines -> True, ColumnLines ->
True,RowsEqual->True,ColumnsEqual->True]]

DisplayForm[FrameBox[gr]]

The only problem is the (almost unnoticeable) gap between the lines and
the frame.

I execute

Options[GridBox]
(Information[Evaluate[#1[[1]]]] & ) /@ %;
Options[FrameBox]
(Information[Evaluate[#1[[1]]]] & ) /@ %;

but I can't one option that can solve this weakness.

Anyway thanks to David and Chris for their advice for using
GridBox.

Î?/Î? dimmechan at yahoo.com έγÏ?αÏ?ε:
> Is it possible to display the output of the following command
>
> table=StyleForm[TableForm[{{"=", "^=", "->"}, {":=", "^:=", ":>"}},
>     TableHeadings -> {{"evaluate rhs", "delay rhs"}, {"global
> rules\nstored with\nthe head",
>        "global rules\nstored with\nan argument", "local rules"}},
> TableAlignments -> Center, TableSpacing -> {2, 2}], FontFamily ->
> "Times", FontSize -> 14, FontColor -> Red]
>
> as it would appeared in a book (i.e. with lines separated columns from
> rows e.t.c.)?
>
> If the answer is no please let me know how I have to work.
> 
> Thanks.


  • Prev by Date: Re: Defining Solve results as variable
  • Next by Date: Re: showing variables in plots?
  • Previous by thread: Re: tableform question
  • Next by thread: Re: Re: tableform question