MathGroup Archive 1998

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

Search the Archive

RE: Grid Box help needed




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




  • Prev by Date: ListPlot?
  • Next by Date: RE: factor
  • Prev by thread: Grid Box help needed
  • Next by thread: Re: Grid Box help needed