RE: Grid Box help needed
- To: mathgroup@smc.vnet.net
- Subject: [mg12538] RE: [mg12497] Grid Box help needed
- From: Ersek_Ted%PAX1A@mr.nawcad.navy.mil
- Date: Sat, 23 May 1998 18:11:04 -0400
michel.gosse@hol.fr wrote: | | |When i enter the command : |GridBox[{{a,b},{1,2}},ColumnLines->True,RowLines->True]//DisplayForm |Everything is fine, and i get the column and row lines correctly When i |enter : |GridBox[{{SequenceForm["+",a],b},{1,2}},ColumnLines->True,RowLines->True]// | DisplayForm |Mathematica returns the table without the lines. How can i correct this, |so that i can have a table with row lines and column lines and using |also the SequenceForm command. Regards. | | The following seems to work: In[1]:= UpperLeft=MakeBoxes[SequenceForm["+",a]]; In[2]:= GridBox[{{UpperLeft, b}, {1, 2}}, ColumnLines->True, RowLines->True]//DisplayForm Out[2]//DisplayForm= (* output deleted *) __________________ Ted Ersek