如何设置行高,比如第一二三行设置12pt,第四行设置36pt。看lshort的说明: \\[12pt]这样设置不起作用,那么该如何设置呢? ```tex \begin{tabu} to 0.4\textwidth {|X[1.5,c]|X[1,c]|X[1,c]|X[1,c]|X[1,c] |X[1,c]|X[2,c]|} \hline 题\quad 号&一&二&三&四&五&总分\\[12pt] \hline 应得分& & & & & & \\[12pt] \hline 实得分& & & & & & \\[12pt] \hline 复评人& & & & & & \\[36pt] \hline \end{tabu} ``` 这是代码编译的表格: ![这是代码编译图片](https://pics.latexstudio.net/data/images/202002/d2ae8356025eb6a.png "这是代码编译图片") 这是我需要的表格 ![这是我需要制作的图片](https://pics.latexstudio.net/data/images/202002/338933fca824427.png)

4 回答4

2
可以用 `Excel` 做好再插入 [https://www.bilibili.com/video/av88631992](https://www.bilibili.com/video/av88631992)
  • 非常感谢! – 蒋蒋 2020-02-15 17:54 回复
1
```tex \documentclass{ctexart} \usepackage{makecell} \usepackage{tabu} \begin{document} \begin{tabu} to 0.8\textwidth {|X[1.5,c]*{5}{|X[1,c]}|X[2,c]|} \hline 题\quad 号&一&二&三&四&五&总分\\ \hline 应得分& & & & & & \\ \hline 实得分& & & & & & \\ \hline 复评人& & \makecell{啊\\啊\\啊} & & & & \\ \hline \end{tabu} \end{document} ``` ![](https://pics.latexstudio.net/data/images/202002/37f1a3e5e03f5a1.png) 优先考虑让内容自然撑大单元格,而不是确定好尺寸后把文字填进去。
0
普通表格用不到 tabu 吧……

作者追问:2020-02-15 17:46

我主要用 tabu 来设置列宽,如果同时需要设置列宽和行高用什么环境比较好?行高还是不知如何设置~

回答: 2020-02-15 17:58

设置列宽也不一定非用 tabu 啊……
0
感谢 论坛 github.com/C ,受到“ 优先考虑让内容自然撑大单元格,而不是确定好尺寸后把文字填进去”的启发, 做了如下调整: \begin{tabu} to 0.4\textwidth {|X[1.5,c]|X[1,c]|X[1,c]|X[1,c]|X[1,c] |X[1,c]|X[2,c]|} \hline 题\quad 号&一&二&三&四&五&总分\\ \hline 应得分& & & & & & \\ \hline 实得分& & & & & & \\ \hline 复评人& & & & & & \multicolumn{1}{@{}c@{}|} {\begin{tabular}{c|ccccc}合\\分\\人& & & & & \end{tabular}} \\ \hline \end{tabu} 得到了最终图片~ ![](https://pics.latexstudio.net/data/images/202002/fe16393615b93bb.png)

回答: 2020-02-18 01:07

采用画图写入“合分人”三字,分割线不知为何高度不够?如果有缘人看到希望解答一下,谢谢! ```tex \begin{tabu} to 0.4\textwidth {|X[1.5,c]|X[1,c]|X[1,c]|X[1,c]|X[1,c] |X[1,c]|X[2,c]|} \hline 题\quad 号&一&二&三&四&五&总分\\ \hline 应得分& & & & & & \\ \hline 实得分& & & & & & \\ \hline 复评人& & & & & & \multicolumn{1}{@{}c@{}|} {\begin{tabular}{c|cccc}\begin{tikzpicture} \node [text width =1em]{合分人}; \end{tikzpicture} & & & & \end{tabular}}\\ \hline \end{tabu} ```

回答: 2020-02-18 01:09

![](https://pics.latexstudio.net/data/images/202002/e52fb3cea325856.png)

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。