I am trying to create a table that uses the following line of code.
Code: Select all
\multicolumn{2}{|c|}{\multirow{2}{*}{Technology}}
The following is the MWE.
Code: Select all
\documentclass[11pt]{report}
\usepackage{multirow}
\begin{document}
\begin{table}[htb]
\centering
\caption{Table}
\begin{tabular}{|c|c|c|c|c|c|c|c|}
\hline
\multirow{2}{*}{Study Name}&\multicolumn{2}{|c|}{\multirow{2}{*}{Technology}} & $\lambda$ & r & U &\multirow{2}{*}{ABCD} &ABCD \\ \cline{4-6}\cline{8-8}
&&& $abcd$ &abcd & abcd & &abcd\\ \hline
\end{tabular}
\label{table01}
\end{table}
\end{document}