如何制作下表

如何制作下表

我是 Latex 新手。我知道如何制作表格,但不知道如何合并两行或两列。

在此处输入图片描述

答案1

这是有问题的部分,例如:

\documentclass{article}
\usepackage{multirow}

\begin{document}

\begin{table}[htbp]
  \centering
  \caption{Add caption}
    \begin{tabular}{|r|l|*7{r|}}
    \hline
    1 & Equipment  & 3,48,200 & 3,48,200      &    & 3,36,578 &  & 3,36,578 & 11,622 \\    \hline
    2 & Consumable & \multirow{4}[0]{*}{14,23,200} & \multirow{4}[0]{*}{3,91,800} & & 8,445 & & 8,445 & \multirow{4}[0]{*}{19,946} \\
    \cline{1-2}\cline{5-8} 3  & Travels       &    &    &        & 14,377   &    & 8,445    &  \\
    \cline{1-2}\cline{5-8} 4  & Contingencies &    &    &        &          &    &          &  \\
    \cline{1-2}\cline{5-8} 5  & Manpower      &    &    & 94,032 & 2,55,000 &    & 3,49,032 &  \\  \hline
    \end{tabular}%
  \label{tab:addlabel}%
\end{table}%

\end{document}

在此处输入图片描述

相关内容