Re: Re: Re: TableAlignments broken in Version 6?
- To: mathgroup at smc.vnet.net
- Subject: [mg77754] Re: [mg77728] Re: [mg77659] Re: TableAlignments broken in Version 6?
- From: DrMajorBob <drmajorbob at bigfoot.com>
- Date: Sat, 16 Jun 2007 03:24:21 -0400 (EDT)
- References: <f4on55$7th$1@smc.vnet.net> <200706140937.FAA07925@smc.vnet.net> <32780435.1181902346180.JavaMail.root@m35>
- Reply-to: drmajorbob at bigfoot.com
Right works in that example (accidentally), but Left doesn't work in its
place:
Grid[{{1, 100}, {1, 1}}, Alignment -> {Bottom, Left}]
and neither does Center.
That's because the syntax is Alignment -> horizontal, Alignment ->
{horizontal, vertical}, or Alignment -> {{horizontal alignments},
{vertical alignments}} et cetera.
These work:
Grid[{{1, 100}, {1, 1}}, Alignment -> Right]
Grid[{{1, 100}, {1, 1}}, Alignment -> Left]
Grid[{{1, 100}, {1, 1}}, Alignment -> {Right, Baseline}]
Grid[{{1, 100}, {1, 1}}, Alignment -> {Left, Baseline}]
Bobby
On Fri, 15 Jun 2007 03:47:16 -0500, Murray Eisenberg
<murray at math.umass.edu> wrote:
> But the following will work:
>
> Grid[{{1, 100}, {1, 1}}, Alignment -> {Bottom, Right}]
>
> dimitris wrote:
>> According to here
>>
>> http://reference.wolfram.com/mathematica/ref/TableForm.html
>>
>> it seems that nothing has changed between 5 and 6 as regards
>> TableForm.
>> So I guess there must be a problem.
>>
>> Dimitris
>>
>> / Mark Fisher :
>>> The following works (i.e., left-aligns the columns) in version 5 but
>>> not in version 6:
>>>
>>> TableForm[{{1, 100}, {1, 1}}, TableAlignments -> Right]
>>>
>>> Am I missing something?
>>>
>>> --Mark
>>
>>
>
--
DrMajorBob at bigfoot.com
- References:
- Re: TableAlignments broken in Version 6?
- From: dimitris <dimmechan@yahoo.com>
- Re: TableAlignments broken in Version 6?