I have the following table, after execution the signs "=" in the first column of the table are not aligned, what could I do to make them so?
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{booktabs,multirow}
\begin{document}
\setlength{\tabcolsep}{0.8cm}
\begin{table}[bth]
\caption{Level planning of the input parameters} \centering
\begin{tabular}{ccc}\toprule[1.2pt]
\multirow{2}{*}{ Model parameter}
&\multicolumn{2}{c}{Level}\\\cmidrule{2-3}
&Low&High\\\midrule[1.2pt]
$A=p_0$&0.03&0.08 \\
$B=\delta$&0.5&1\\
$C=L_0$&50&250\\
$D=L_1$&500&700\\
$E=\lambda$&0.001&0.008\\
$F=M$&80&160\\
$G=b$&0&1\\
$H=c$&0.1&0.5\\
\bottomrule[1.2pt]
\label{Factorlevels}
\end{tabular}
\end{table}
\end{document}