[Tex/LaTex] How to synchronize sidewaystable with the odd/even page

double-sidedfloatsrotating

I have two tables, T1 and T2. I want these to appear in two pages as if the head-side of the table remains at the binding side of the book. Like this

|||||>|<|||||

|||||>|<|||||

|||||>|<|||||

I have used,

\begin{sidewaystable} 
\begin{center}
\caption{My caption} 
\begin{tabular}{ ... ...}

This indeed rotates the tables, but the top-side of the tables go to the edge-side of the page.

Any idea how to fix it? I would prefer to use rotate and tell to move X degree manually.

Best Answer

The dpfloat package may help.

\documentclass[twoside]{book}

\usepackage{dpfloat}
\title{Example}
\author{Me}

\begin{document}

\maketitle

text\clearpage
more text

\begin{figure}[p]
\begin{leftfullpage}
    Left part of float
\end{leftfullpage}
\end{figure}
\begin{figure}[p]
\begin{fullpage}
    Right part of float
\end{fullpage}
\end{figure}

\end{document}