I have created a table below. I want that the text in the columns is left-justified. And I want to implement syllable division. How can I implement this?
Code: Select all
\begin{sidewaystable}
\caption{Overview}
\par\bigskip
\label{overview}
\centering
\begin{tabular}{@{}p{4cm}p{4.5cm}p{4cm}p{4.2cm}p{1.5cm}@{}}
\toprule
A & V & C & X & D \\
\cmidrule(r){1-1}
\cmidrule(lr){2-2}
\cmidrule(lr){3-3}
\cmidrule(lr){4-4}
\cmidrule(l){5-5}
x & x & T & x & x \\
\bottomrule
\end{tabular}
\end{sidewaystable}
Wooly