當我寫如何在Mathematica中將行[]的元素對齊到底部還是頂部?
Row[ {[email protected][{1,2}], [email protected]"123"}, Alignment->Top]
在兩種情況下
或
Row[ {[email protected][{1,2}], [email protected]"123"}, Alignment->{Left,Top}]
,什麼都不會發生。默認對齊方式是居中,並且元素列出對齊於對方的中線。
Grid[ {{[email protected][{1,2}], [email protected]"123"}}, Alignment->Top]
作品不錯,但Grid[]
是當Row[]
就足夠矯枉過正。
幫助系統說對齊應該起作用(列出{Left,Baseline}
作爲示例),但它似乎不可更改。我正在使用v8.0.4。
順便說一句,歡迎來到StackOverflow。 –