Thanks very much for the fast reply and suggestion! I have to apologize for simplifying my problem too much. My table does not fit on a single page even with sidewaystable, so I split it into two parts. I then use
\ContinuedFloat to continue the caption on the second part ("Table 1 (Continued)...").
I need both part of this table to be sideways and against the left margin. I will dig around to see if
hvfloat can do that. Here my updated example, sorry for not clarifying earlier.
Thanks Bert
Code: Select all
\documentclass[11pt]{article}
\usepackage{rotating}
\usepackage{rotfloat}
\usepackage{threeparttable}
\usepackage[left=1.5in, top=1in, right=1in, bottom=1in, includehead, includefoot]{geometry}
\usepackage{caption}
\DeclareCaptionLabelFormat{continued}{#1~#2 (Continued)}
\captionsetup[ContinuedFloat]{labelformat=continued}
\begin{document}
% Table 1
\begin{sidewaystable}[htbp] \centering \caption{My Caption}
\begin{threeparttable}
\begin{tabular}{l*{2}{c}}\hline\hline
\multicolumn{1}{l}{column1}&\multicolumn{1}{c}{column2}\\
test1 & test2 \\
test1 & test2 \\
test1 & test2 \\
\hline\hline \end{tabular}
Continued on next page.
\end{threeparttable} \end{sidewaystable}
%% Table 1 (Continued)
\begin{sidewaystable}[htbp] \centering \ContinuedFloat \caption{My Caption}
\begin{threeparttable}
\begin{tabular}{l*{2}{c}}\hline\hline
\multicolumn{1}{l}{column1}&\multicolumn{1}{c}{column2}\\
test2 & test3 \\
test2 & test3 \\
\hline\hline \end{tabular}
A footnote goes here.
\end{threeparttable} \end{sidewaystable}
\end{document}