I've been struggling to appropriately align rotated text using longtable, array and rotating packages. I basically want column headers to be aligned at the bottom, however, LaTeX centres them even after issuing an explicit ragged directives.
\documentclass[a4paper,10pt]{report}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{array}
\usepackage{rotating}
\begin{document}
\begin{longtable}{
>{\centering\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.60\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}|
>{\arraybackslash}m{0.010\linewidth}}
\caption{Minimal Example Table}
\label{tab:minimal-example:the-table} \\
\cline{3-9}
\multicolumn{1}{c}{} &
\multicolumn{1}{c|}{} &
\begin{sideways}\textbf{Column 1}\end{sideways} &
\begin{sideways}\textbf{Column 2}\end{sideways} &
\begin{sideways}\textbf{Column 3}\end{sideways} &
\begin{sideways}\textbf{Column 4}\end{sideways} &
\begin{sideways}\textbf{Long Column 1}\end{sideways} &
\begin{sideways}\textbf{Column 5}\end{sideways} &
\begin{sideways}\textbf{Column 6}\end{sideways}\\
\cline{1-9}
\endfirsthead
\caption[]{(continued)}\\
\cline{3-9}
\multicolumn{1}{c}{} &
\multicolumn{1}{c|}{} &
\begin{sideways}\textbf{Column 1}\end{sideways} &
\begin{sideways}\textbf{Column 2}\end{sideways} &
\begin{sideways}\textbf{Column 3}\end{sideways} &
\begin{sideways}\textbf{Column 4}\end{sideways} &
\begin{sideways}\textbf{Long Column 1}\end{sideways} &
\begin{sideways}\textbf{Column 5}\end{sideways} &
\begin{sideways}\textbf{Column 6}\end{sideways}\\
\cline{1-9}
\endhead
% Page footer
\cline{1-9}
\multicolumn{9}{c}{(Continued on next page)} \\
\endfoot
% Last page footer
%\bottomrule
\endlastfoot
\multirow{3}{*}{\begin{sideways}\textbf{R1}\end{sideways}} &
{Place holder text....}&
{}&
{}&
{}&
{}&
{X}&
{}&
{}\\
\cline{2-9}
{}&
{Place holder text....}&
{}&
{X}&
{X}&
{}&
{X}&
{X}&
{X}\\
\cline{1-9}
\multirow{3}{*}{\begin{sideways}\textbf{R2}\end{sideways}} &
{Place holder text....}&
{}&
{}&
{}&
{}&
{X}&
{}&
{}\\
\cline{2-9}
{}&
{Place holder text....}&
{}&
{X}&
{X}&
{}&
{X}&
{X}&
{X}\\
\cline{2-9}
{}&
{Place holder text....}&
{}&
{X}&
{X}&
{}&
{X}&
{X}&
{X}\\
\cline{1-9}
\end{longtable}
\end{document}

\arraypackage for those columns --by replacing>{\arraybackslash}m{0.010\linewidth}with ac. However, I was rather hoping I could have control over the width of those columns. – lightonphiri Feb 17 '13 at 16:59\hbox, like this:\hbox to 1.2in{\bf Column 1\hss}. – Thruston Feb 17 '13 at 17:56