I am preparing a paper for Elsevier, then I used elsart document class. Tables are centered, but their captions are not centered. How can I solve this problem?
This is my code:
\documentclass{elsart}
\usepackage{multirow}
\usepackage{rotating}
\begin{document}
\begin{table}[h!]
\caption{....}
\centering
\scalebox{1.5}{
\begin{tabular}{cc|c|c|c|c|c|c|c|l}
...
...
...
\end{tabular}}
\label{tab:tab1}
\end{table}
\end{document}
I'll be glad if someone help me.

