Hi I have the following table. Is there a way to set the width of the column. I want to minimize the column width so that it could fit my journal template.
\documentclass{article}
\usepackage{amsmath}
\usepackage{tabular}
\begin{document}
\begin{table}[ht!]
\caption{Sensitivity Analysis of the Parameters in the Inventory model}
\label{tab:my tab}
\begin{tabular}{|lcc{1cm}||cccccc|}
\hline
\multirow{3}{*}{Parameters}&
\multirow{3}{*}{Values}&
\multirow{3}{*}{\% Change}&
\multicolumn{6}{|c|}{Change in}\\ \cline{4-9}
&&&$T$&$t_1$&$TVC$&$S$&$P$&$Q$ \\ \hline
\end{tabular}
\end{document}

$...$. If you want italicized use\textit{...}. And to set the width of a column you have to usep{1cm}, notc{1cm}. – Phelype Oleinik Jun 30 '18 at 19:35