如何更改表格列的字体大小?

发布于 2024-08-21 20:32:17 字数 102 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最偏执的依靠 2024-08-28 20:32:17

使用包array并在\begin{tabular}之后指定字体,例如:

\usepackage{array}
...
\begin{tabular}{|>{\small}c|>{\Huge}c}
a & b \\
c & d 
\end{tabular}

这使得第一列字体,第二列字体 巨大>{decl} 用在 l、r、c、p、mb 之前并插入 decl 直接来自该列的每个条目。

您可以找到此包的更多详细信息(例如,在每个条目后放置 decl>{decl}此处

Use the package array and specify the font just after the \begin{tabular}, e.g.:

\usepackage{array}
...
\begin{tabular}{|>{\small}c|>{\Huge}c}
a & b \\
c & d 
\end{tabular}

this makes the first column font small and the second Huge. >{decl} is used before l, r, c, p, m, or b 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文