Due to the amount of text I have in my tables, I need to have some spacing between the table columns, otherwise the contents might confuse the readers. To improve readability, I think it would be nice to center the table headers in my table as well. I am using the booktables package for this table. Any help would be appreciated.
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage{booktabs}
\begin{table}
\begin{center}
\begin{tabular}{lp{5cm}p{5cm}}
\toprule
Lorem & Here1 & Here There everywhere \\
\midrule
Here1 & Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet,
& Lacus sit amet tristique gravida, dui mauris auctor orci, non ultricies velit nisl at est.\\[+0.15in]
Here2 & Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet,
\vspace{.15in} & OLacus sit amet tristique gravida, dui mauris auctor orci, non ultricies velit nisl at est.\\ %[+0.30in]
Here3 & Vestibulum sed metus et lectus aliquet luctus. Quisque convallis sapien eget sapien rhoncus vel lobortis urna laoreet. Sed aliquam rhoncus
velit eu venenatis . & Cras dui eros, laoreet sed ornare id, facilisis a lacus.\\
\bottomrule
\end{tabular}
\end{center}
\caption{Caption}
\label{naldsg}
\end{table}
\end{document}