Re: SetOptions[TableForm] doesn't seem to work?
- To: mathgroup at smc.vnet.net
- Subject: [mg89266] Re: SetOptions[TableForm] doesn't seem to work?
- From: "David Park" <djmpark at comcast.net>
- Date: Tue, 3 Jun 2008 03:58:14 -0400 (EDT)
- References: <g20b54$g10$1@smc.vnet.net>
AES, I was going to suggest using Grid, which is much more powerful than TableForm and well worth knowing. However, it suffers from the same problem! Grid[Array[Subscript[a, ##] &, {3, 2}], Spacings -> {5, 1}] SetOptions[Grid, Spacings -> {5, 1}] Grid[Array[Subscript[a, ##] &, {3, 2}]] It seems reasonable that one should be able to set the Spacings option, so I think this is a bug in both cases. -- David Park djmpark at comcast.net http://home.comcast.net/~djmpark/ "AES" <siegman at stanford.edu> wrote in message news:g20b54$g10$1 at smc.vnet.net... > I'm puzzled as to why > > SetOptions[TableForm,TableSpacing->{1,5}] > > doesn't seem to have the desired effect on tables created in subsequent > cells using > > TableForm[Table[ --- ]] > > even though Options[TableForm] shows the TableSpacing as having been > increased, and even though copying and pasting the TableSpacing->{1,5} > string into the appropriate place in these subsequent TableForm[] cells > produces the desired result. >