正确的细胞排列

正确的细胞排列

第一行的内容没有与中心对齐

\documentclass{article}
\begin{document}

\begin{table}[h]
 \centering
        \begin{tabular}{|c|c|c|c|c|c|c|}
        \hline
        Awqqf & Bfwqf & Cfwq & \multicolumn{2}{|c|}{D} \\ 
        \cline{4-5}
        & & & L & U\\
       \hline 
        P & & & &\\
        \hline
        Pa& & & &\\
        \hline
       \end{tabular}
\end{table}
\end{document}

在此处输入图片描述

答案1

要使单元格跨行垂直居中n,请加载multirow包并使用\multirow{n}{*}{...}指令。

\documentclass{article}
\usepackage{multirow}
\begin{document}

\begin{table}[ht!]
\centering
        \begin{tabular}{|*{5}{c|}}
        \hline
        \multirow{2}{*}{Awqqf} & \multirow{2}{*}{Bfwqf} & \multirow{2}{*}{Cfwq} & 
        \multicolumn{2}{c|}{D} \\ 
        \cline{4-5}
        & & & L & U\\
       \hline 
        P & & & &\\
        \hline
        Pa& & & &\\
        \hline
       \end{tabular}
\end{table}
\end{document}

相关内容