如何制作这种推荐格式的 4 列 LaTeX 表格?

如何制作这种推荐格式的 4 列 LaTeX 表格?

我正在研究如何以正确的方式格式化和使用表格,然后我遇到了这个指南:如何制作漂亮的桌子

在其中一张幻灯片上,有一张表格,看起来很漂亮,也建议使用这种格式。我想使用它,但没有该表格的代码,而且我想有 4 列,但其余的布局与图片中完全相同。我已经添加\usepackage{booktabs}到我的preamble.tex.

有人能帮我提供代码吗?提前谢谢了。

推荐漂亮的桌面布局

答案1

将第四个放在l定义的三列之前或之后:

\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\begin{document}

\begin{tabular}{ @{} l l >{$\mathstrut\displaystyle}l<{$} @{} }\toprule 
\emph{concept} & \emph{abstract} & \multicolumn{1}{l}{\emph{realized}} \\\midrule
foo & bar & y=f(x) \\
foo & bar & y=f(x)=\int_1^\infty \frac1{x^2}\mathrm dx \\
foo & bar & y=f(x) \\
foo & bar & y=f(x)=\int_1^\infty \frac1{x^2}\mathrm dx \\
foo & bar & y=f(x) \\
foo & bar & y=f(x)=\int_1^\infty \frac1{x^2}\mathrm dx \\[3ex]
foo & bar & y=f(x)=\int_1^\infty \frac1{x^2}\mathrm dx \\\bottomrule
\end{tabular}

\end{document}

在此处输入图片描述

相关内容