[Tex/LaTex] How to fix issues after rotating a table with sidewaystable directly below the Chapter title

rotating

I am trying to get a big table in the Appendix, directly below the chapter title.

Sidewaystable from the rotating package works, since it nicely rotates the entire table, including caption and footnotes.

After searching a while, I found that the floatrow package adds the [H] option to the sidewaystable-environment, such that it can be forced to be placed at a specific location.

However, when adding that option to the table below the chapter title, not the table is sitting below the title but the title slides down and sits above the table. In result, an additional blank page is left before the title.
Moreover, the title is below a header, which I was unable to remove through \thispagestyle{empty}. I have added a minimal working example below.

Is there a way to move the table up instead of the title down, in order to fix (i) the empty page and (ii) the header occurrence?

\documentclass[openright]{scrbook}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{floatrow}

\begin{document}
\chapter{Appendix}
\begin{sidewaystable}[H]
\caption{Experimental settings.}
\begin{tabular}{lccc}
\toprule 
Test & Yes & No & Yes \tabularnewline
\midrule
1  & 2 & 3 & 4\footnote{This is absolutely necessary information with reference to 4.}                   
\tabularnewline
\bottomrule
\end{tabular}
\label{table_exp_settings}
\end{sidewaystable}
\thispagestyle{empty}
\end{document}

Best Answer

I think you want something like this:

enter image description here

\documentclass[openright]{scrbook}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{floatrow}

\begin{document}
\chapter{Appendix}

\rotatebox{90}{\parbox{.5\textheight}{%
\centering
\captionof{table}{Experimental settings.}
\bigskip
\begin{tabular}{lccc}
\toprule 
Test & Yes & No & Yes \tabularnewline
\midrule
1  & 2 & 3 & 4\footnote{This is absolutely necessary information with reference to 4.}                   
\tabularnewline
\bottomrule
\end{tabular}
\label{table_exp_settings}
}}

\thispagestyle{empty}
\end{document}