My problems are as follows:
1. I need 8 columns and the symbols a, b, c, d written in 3rd row should come below "Fixed parameters"
3. The word "Remarks" (& similarly NIL) should come at the 8th column 1st row. That is, the word NIL should come below the word "Remarks" in 8th column.
Code: Select all
\documentclass[11pt]{article}
\usepackage{caption}
\usepackage{booktabs,multirow,amsmath,amssymb,array}
\usepackage{siunitx}
\usepackage[table]{xcolor}
\begin{document}
\begin{table}[!ht]
\caption{The set of parameter values and their corresponding figures}
\centering
\label{tab:parameter_values}
\scriptsize\addtolength{\tabcolsep}{-5pt}
\colorbox{lightgray}{%
\begin{tabular}{
>{$}c<{$}
>{$}c<{$}
>{$}c<{$}
>{$}c<{$}
@{~}
>{$}c<{$}
c
c
%c
}\toprule
\multicolumn{4}{p{12em}}{Fixed parameters} & \multirow{2}{*}{\tau} & \multirow{2}{*}{Results/nature of the equilibrium} & \multirow{2}{*}{Figures} & \multirow{2}{*}{Remarks} \\ \cmidrule(r){1-4}
{a} & {b} & {d} & {h} & & & & \midrule \\
{1.5} & {1.5} & {1.5} & {1.5} & 1.5 & {behavior is} & Fig 1 & {NIL} \\ \bottomrule \end{tabular}}
\end{table}
\end{document}