latex表格线加粗
时间: 2023-07-24 18:20:08 浏览: 322
LaTeX如何加粗表格线 makecell宏包
4星 · 用户满意度95%
你可以在表格的头部加入 `\usepackage{booktabs}` 以使用 `booktabs` 宏包提供的命令。然后在表格中使用 `\toprule`、`\midrule`、`\bottomrule` 分别表示表格的顶部线、中间线和底部线。其中,`\toprule` 和 `\bottomrule` 表示的线比 `\midrule` 更粗。示例如下:
```latex
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{ccc}
\toprule
Header 1 & Header 2 & Header 3 \\
\midrule
Row 1, Col 1 & Row 1, Col 2 & Row 1, Col 3 \\
Row 2, Col 1 & Row 2, Col 2 & Row 2, Col 3 \\
\bottomrule
\end{tabular}
\end{document}
```
生成的表格如下所示:
```
Header 1 Header 2 Header 3
---------------------------------------
Row 1, Col 1 Row 1, Col 2 Row 1, Col 3
Row 2, Col 1 Row 2, Col 2 Row 2, Col 3
```
阅读全文