I'm learning to use LaTeX with Overleaf and I cannot solve this problem.
I want to center both vertically and horizontally the first row, while increasing the space between lines and adding enumerate. Everything I try doesn´t work.
This is the code:
\begin{table}
\begin{center}
\setlength{\tabcolsep}{10pt} % Default value: 6pt
\renewcommand{\arraystretch}{1.5} % Default value: 1
\begin{tabular}{p{8cm}}
\toprule
\centerline{\textbf{Titleeeeeeeeeee}} \\
\hline
\begin{enumerate}
\item aaaaaaaaaaaa
\item bbbbbbbbbbbbbbbb
\item cccccccccccccccccccccc
\item ddddddddd
\item eeeeeeeeeeeeeeeeeeeeeeeeeeeeee
\end{enumerate}\\
\toprule
\end{tabular}
\caption{\label{tab:xxxxx} xxxxxxxxxxxxxxxxxxxxxxxx}
\end{center}
\end{table}
And this is the result,


\documentclassand ending with\end{document}. – Bobyandbob Jun 27 '18 at 10:05\toprulefor the line at the bottom of the table instead og\bottomrule? Regarding the centered alignment in the first row, you might want to use\multicolumnor\makecellinstead of\centerline. – leandriis Jun 27 '18 at 12:43