如何更改表格列的字体大小?
我有一个 LaTeX 表格,希望第三列的字体大小(较小)与其他列不同。我总是使用一个特殊用途的宏来完成此操作,该宏为每列获取一个参数并为其中一列执行字体更改。有没有更简单的方法来做到这一点?
I have a LaTeX table and would like the third column to be a different font size (smaller) than the others. I've always done this with a special-purpose macro that takes a parameter for each column and executes a font change for one of the columns. Is there an easier way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用包
array
并在\begin{tabular}
之后指定字体,例如:这使得第一列字体
小
,第二列字体小
巨大
。>{decl}
用在l、r、c、p、m
或b
之前并插入 decl 直接来自该列的每个条目。您可以找到此包的更多详细信息(例如,在每个条目后放置 decl 的
>{decl}
)此处。Use the package
array
and specify the font just after the\begin{tabular}
, e.g.:this makes the first column font
small
and the secondHuge
.>{decl}
is used beforel, r, c, p, m
, orb
and inserts decl directly in from of each entry of the column.You can find further details of this package (e.g. the
>{decl}
to put decl after each entry) here.