-1

enter image description here

I wish to have this table by using latex code.

1 Answers1

1

Is this what you wanted ???

\documentclass[a4paper,12pt]{report}
\usepackage[inner=0.75in,outer=0.65in,top=0.75in,bottom=0.75in]{geometry}
\usepackage[sc]{mathpazo}
\usepackage{multirow}

\begin{document}
\begin{tabular}{|p{2cm} | c| c| c|}
\hline 
\multirow{2}{*}{more text} & \multicolumn{3}{|c|}{} \\
\cline{2-4} 
 &   text & text& text \\
\hline
text  & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
\end{tabular}
\end{document}

You didn't specify anything about the alignment of the text inside the cells, so I just went with the easiest solution.

http://i.imgur.com/U4m8Um1.png?1

1010011010
  • 6,357