MathGroup Archive 2012

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

Search the Archive

Re: how to make formatted output with Grid and Print?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg125839] Re: how to make formatted output with Grid and Print?
  • From: Ted Sariyski <tsariysk at craft-tech.com>
  • Date: Thu, 5 Apr 2012 05:43:17 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201204040831.EAA29982@smc.vnet.net>

It works. I don't understand why, though.
Thanks a lot.
--Ted


On 04/04/2012 04:31 AM, Alexei Boulbitch wrote:
> Hi,
> I want to make a kind of formatted Print output with Grid. With strings
> it works as expected,
>
> Grid[{{"a", "b"}, {"c", "d"}}]
>> a    b
>> c    d
>>
> Print puts \n before Grid takes effect.
> Grid[{{Print["a"], Print["b"]}, {Print["c"], Print["d"]}}]
>> a
>> b
>> c
>> d
> How can I produce formatted output?
> Thanks,
> --Ted
>
> Hi, Ted,
> What about the following:
>
> Print@Grid[{{"a", "b"}, {"c", "d"}}]
>
> a	b
> c	d
>
> ?
>
>
> Alexei BOULBITCH, Dr., habil.
> IEE S.A.
> ZAE Weiergewan,
> 11, rue Edmond Reuter,
> L-5326 Contern, LUXEMBOURG
>
> Office phone :  +352-2454-2566
> Office fax:       +352-2454-3566
> mobile phone:  +49 151 52 40 66 44
>
> e-mail: alexei.boulbitch at iee.lu
>
>
>
>




  • Prev by Date: Re: Pattern Syntax for Alternate Heads with Default Value
  • Next by Date: Re: Pattern Syntax for Alternate Heads with Default Value
  • Previous by thread: Re: how to make formatted output with Grid and Print?
  • Next by thread: How to generate ``nice'' algebra output from command-line mathematica?