1

I want to create this table format in LaTeX.

enter image description here

Can anybody help me to create this table?

1 Answers1

1

You can apply this code

\documentclass{article}
\usepackage{multirow}
\usepackage{array}

\begin{document}
\begin{table}[!htbp]
\centering
\begin{tabular}{|c|c|c|c|c|c|c|}
\hline
\multirow{2}{*}{} & \multirow{2}{*}{} & \multirow{2}{*}{} & \multicolumn{3}{l|}{} & \multirow{2}{*}{} \\ \cline{4-6}
                  &                   &                   &       &       &       &                   \\ \hline
                  &                   &                   &       &       &       &                   \\ \hline
                  &                   &                   &       &       &       &                   \\ \hline
\end{tabular}
\end{table}
\end{document}

Here is the table with some entries

enter image description here

\begin{table}[!htbp]
\centering
\begin{tabular}{|c|c|c|c|c|c|c|}
\hline
\multirow{2}{*}{\bf Z} & \multirow{2}{*}{\bf X} & \multirow{2}{*}{\bf V} & 
\multicolumn{3}{c|}{\bf A} & \multirow{2}{*}{\bf Y} \\ \cline{4-6}
                   &                        &                        &    B     &    C   &    D   &                        \\ \hline
                   &                        &                        &          &        &        &                        \\ \hline
                   &                        &                        &          &        &        &                        \\ \hline
\end{tabular}
\end{table}
Cragfelt
  • 4,005