如何修改表格行高?

2020-02-15 17:33发布

如何设置行高,比如第一二三行设置12pt,第四行设置36pt。看lshort的说明: \\[12pt]这样设置不起作用,那么该如何设置呢? ```tex \begin{tabu} to 0.4\tex...

如何设置行高,比如第一二三行设置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条回答
蒋蒋
2020-02-15 18:47
感谢 论坛 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-15 18:47

采用画图写入“合分人”三字,分割线不知为何高度不够?如果有缘人看到希望解答一下,谢谢! ```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-15 18:47

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

一周热门 更多>