RowSpacings允许更改网格中的行距。
帮助说:
RowSpacings->{Subscript[s, 12],Subscript[s, 23],...} can be used to specify
different spacings between different rows. If there are more rows than
entries in this list, then the last element of the list is used repeatedly
for the remaining rows
请注意,它上面的其余行。
我想要的是使所有开始的行都使用一定的间距,但使最后一行使用不同的间距。
本示例采用记录方式(其余行)
n = 5;
data = Table[Random[], {n}, {n}];
Grid[data, Frame -> All, RowSpacings -> {6, 1}, Alignment -> Center]
但是我想做相反的事情,即将最后一行设置为某行,并将其之前的所有行设置为另一行。我能做到的唯一方法是漫长的路,即写下所有行的所有间距直到最后一行:
n = 5;
data = Table[Random[], {n}, {n}];
Grid[data, Frame -> All,
RowSpacings -> {Sequence @@ Table[1, {n - 2}], 6},Alignment -> Center]
以上只是另一种写法
Grid[data, Frame -> All, RowSpacings -> {1, 1, 1, 6}, Alignment -> Center]
我也尝试过类似的东西
Grid[data, Frame -> All, RowSpacings -> {{1}, 6}, Alignment -> Center]
Grid[data, Frame -> All, RowSpacings -> {{1 ;; 3}, 6}, Alignment -> Center]
但它们不起作用。我找不到像上面第一个示例中那样的捷径。
任何人都知道一种技巧,可以告诉
RowSpacings
仅将最后一个Row设置为某个特定值,并将所有行设置为另一个特定值,而不使用上述hack吗?这样做真的不是什么大不了的事,我只是想知道我是否忽略了Mathematica中的那些技巧语法用法之一,仅此而已。
谢谢,
最佳答案
假设您没有其他理由使用RowSpacings
+ GridBox
组合,对Spacings
使用Grid
选项
Grid[data, Spacings -> {Automatic, Dimensions[data][[1]] -> 6},
Frame -> All, Alignment -> Center]
提供您所需要的。
编辑:更方便的是
Grid[data, Spacings -> {Automatic, -2-> 6}, Frame -> All, Alignment -> Center]
,其中-2
指的是从1到1+number of rows
的行索引的最后一个元素中的第二个元素编辑2:使用
GridBox
,以下产生相同的输出:GridBox[data, RowLines -> True, ColumnLines -> True,
GridFrame -> True, RowAlignments -> Center,
ColumnAlignments -> Center,
GridBoxSpacings -> {"RowsIndexed" -> {-2 -> 6}}] //DisplayForm
关于wolfram-mathematica - 对于仅为网格中的最后一行设置RowSpacing的任何简短语法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8688530/