I am going crazy with the following.. I've already spent half a day on it. Essentially I have this.
Code: Select all
\documentclass[a4paper,oneside,12pt]{book}
\usepackage{multirow}
\usepackage{rotating}
\begin{document}
\renewcommand{\arraystretch}{1.9}
\begin{table}[!thb]
\centering{
\begin{tabular}{|c |l| c |c | c | c | c | c | c | c | c |}
\hline
\multicolumn{2}{|c|}{\footnotesize{Full support (!) }} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Unified Architecture}} \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Wang et al.} } \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Song et al.}} \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Lee and Chung} } \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Zrelli et al.}}\end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Fathi et al.} }\end{sideways}}} & {\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Heer et al.} } \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Kuntz et al.}} \end{sideways}}} &
{\multirow{4}{*}{\begin{sideways}\footnotesize{\textbf{Baek et al.} } \end{sideways}}} \\
\multicolumn{2}{|c|}{\footnotesize{Some support (-)}} & & & & & & & & & \\
\multicolumn{2}{|c|}{\footnotesize{No support ($\times$)}} & & & & & & & & & \\
\multicolumn{2}{|c|}{\footnotesize{Unknown (?)}} & & & & & & & & & \\ \hline
\multirow{3}{*}{\begin{sideways}\scriptsize{\textbf{Mobility}}\end{sideways}}
& Host Mobility & - & - & - & - & - & - & - & - & - \\ \cline{2-11}
& Single Network Mobility & - & - & - & - & - & - & - & - & - \\ \cline{2-11}
& Nested Network Mobility & - & - & - & - & - & - & - & - & - \\ \hline
\end{tabular}
\caption{test}
\label{test}
}
\end{table}
\renewcommand{\arraystretch}{1.0}
\end{document}
- to have all the sideway titles of the columns (e.g. Wang et al., Song et al. etc) aligned at the bottom of the cell (and not at the centre as they are now)
- have a bit of space on the Unified Architecture title at the top (so that it looks more spacious in the field.
Thanks a lot!