[Tex/LaTex] LaTeX multirow package conflicts

multirowtables

I am using the multirow package with the following packages in report document class;

\usepackage[figuresright]{rotating}
\usepackage{tikz}
\usepackage{multirow, array}
\usetikzlibrary{shapes,arrows}
\usepackage{graphicx,caption,subfigure}
\usepackage{algorithm,algpseudocode}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{epstopdf}
\usepackage{hyperref}
\usepackage{lscape}

I am unable to compile with error as follows:

! Undefined control sequence.
\@xmultirow ...\advance \@tempdima #2\bigstrutjot
\setbox 0\hbox {\vtop to \...
l.561 }

What are the conflicting dependencies? This is my table structure:

\scalebox{0.9}{
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|c|}
\hline
\multirow{2}[0]{*}{S. No.} & \multicolumn{1}{|c|}{\multirow{2}[0]{*}{Subject}} & \multicolumn{1}{|c|}{\multirow{2}[0]{*}{Session}} & \multicolumn{1}{|c|}{\multirow{2}[0]{*}{Freq Band}} & \multicolumn{1}{|c|}{\multirow{2}[0]{*}{Our Approach}} & \multicolumn{6}{|c|}{Values}        \\

      & \multicolumn{1}{|c|}{} & \multicolumn{1}{|c|}{} & \multicolumn{1}{|c|}{} & \multicolumn{1}{|c|}{} & Ours & xxxx & xxxx  & xxxx* & xxx* & \multicolumn{1}{|c|}{xxx*} \\
      \hline
      \hline

Best Answer

I am unable to reproduce the errors you describe, using just the scant information you've provided so far.

That said, I'd like to suggest that you redesign your table to (a) employ no vertical rules at all and (b) not using any \multirow directives to give the entire table a more "open" look. Separately, instead of using \scalebox to reduce the size, I suggest you place the tabular material in a landscape-oriented sidewaystable environment.

enter image description here

\documentclass{report}
% preamble simplified and streamlined
\usepackage[figuresright]{rotating}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{caption,subcaption}
\usepackage{algorithm,algpseudocode}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{pdflscape,booktabs}
\usepackage{hyperref}

\begin{document}

\begin{sidewaystable}
\centering
\begin{tabular}{@{} *{11}{c} @{}}
\toprule
S.\ No. & Subject & Session & Freq Band & Our Approach
& \multicolumn{6}{c}{Values}\\
\cmidrule(l){6-11}
& & & &
& Ours & xxxx & xxxx  & xxxx* & xxx* & xxx* \\
\midrule
\dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots \\
\dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots & \dots \\
\bottomrule
\end{tabular}
\end{sidewaystable}
\end{document}
Related Question