Does anybody know if it is possible to have a multipage table with the package ctable (I know that it is possible with longtable)?
My code is the following:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage[babel]{csquotes}
\usepackage{array}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{subfig}
\usepackage{rotating}
\usepackage{ctable}
\begin{document}
\ctable[
caption = Data Definitions and Sources,
label = data,
sideways
]
{>{\bfseries}l p{0.3\columnwidth} c c p{0.3\columnwidth}}
{
}
{ \FL
....
}
\end{document}


{}). Usually, we don't put a greeting or a "thank you" in our posts. While this might seem strange at first, it is not a sign of lack of politeness, but rather part of our trying to keep everything very concise. Upvoting is the preferred way here to say "thank you" to users who helped you. Could you reduce your example only with the needed packages? – Claudio Fiandrino Dec 27 '12 at 13:42\ctablemakes a floating object; you needlongtablefor this application. – egreg Dec 27 '12 at 13:53