\multirow中内容如何垂直对齐? 财富值5

2020-02-10 20:08发布

7910 1 1

在\tabular环境中如何使\multirow中内容如何垂直对齐(居中)? 如图所示,红色框中的BC、CD如何垂直方向对齐,即竖直方向居中?![](https://pics.latexstudio....

在\tabular环境中如何使\multirow中内容如何垂直对齐(居中)? 如图所示,红色框中的BC、CD如何垂直方向对齐,即竖直方向居中?![](https://pics.latexstudio.net/data/images/202002/894d6efec8dff9e.png) 附上MWE~ ```tex \documentclass[]{article} \usepackage{booktabs} \usepackage{multirow} \begin{document} \begin{table}[!h] \centering \caption{ABC} \begin{tabular}{@{}ccccccccc@{}} \toprule \multirow{2}{*}{BC} & \multirow{2}{*}{CD} & \multicolumn{3}{c}{CF~[100]} & \multicolumn{3}{c}{HG~[010]}\\ \cmidrule[0.05em](lr){3-5} \cmidrule[0.05em](l){6-8} & & $x$ & $y$ & $z$ & $x$ & $y$ & $z$ \\ \midrule 1 & $f_x$ & 1 & 0 & 0 & 0 & 1 & 0 \\[5pt] 2 & $g_{xy}$ & 5 & 3 & 15 & 5 & 6 & 30 \\ \bottomrule \end{tabular} \end{table} \end{document} ```
1条回答
啸行 - 目前是一名 LaTeX 学徒
2020-02-10 20:39 .采纳回答
```tex \documentclass{article} \usepackage{booktabs} \usepackage{multirow} \begin{document} \begin{table} \centering \caption{ABC} \begin{tabular}{*{8}{c}} \toprule \multirow{2}{*}[-0.5ex]{BC} & \multirow{2}{*}[-0.5ex]{CD} & \multicolumn{3}{c}{CF~[100]} & \multicolumn{3}{c}{HG~[010]}\\ \cmidrule[0.05em](lr){3-5} \cmidrule[0.05em](l){6-8} & & $x$ & $y$ & $z$ & $x$ & $y$ & $z$ \\ \midrule 1 & $f_x$ & 1 & 0 & 0 & 0 & 1 & 0 \\ 2 & $g_{xy}$ & 5 & 3 & 15 & 5 & 6 & 30 \\ \bottomrule \end{tabular} \end{table} \end{document} ``` 参考 multirow 手册第 3 章中关于 `\multirow` 命令的用法
12人赞 添加讨论(2)举报

一周热门 更多>