How can I rotate and center a landscape table in a document based on the svmono class, which also contains \sidesubfloat instances? It seems the use of
floatrow messes badly with the position of the landscape table (see "actual output" example). Even if this were not a problem, the rotation of the table is not as desired (see "desired output" example).
I've tried without luck the ideas in other posts in the forum... can someone please give me a hand? Thanks and regards, Jorge.
Example:
\documentclass[graybox,envcountchap,vecarrow,twoside]{svmono}
\usepackage[paperheight=240mm,paperwidth=170mm,top=2.5cm,inner=2.5cm]{geometry}
\usepackage{mathptmx}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{graphicx}
\usepackage{lipsum}
% For labels besides figures
\usepackage{floatrow}
\floatsetup[figure]{style=plain,subcapbesideposition=top}
\setlength{\labelsep}{1cm}
% Tables-related
\usepackage{booktabs}
\aboverulesep=0ex
\belowrulesep=0ex
\usepackage{multirow}
\usepackage{multicol}
\usepackage{makecell}
\renewcommand{\arraystretch}{1.2}
% For landscape stuff
\usepackage{pdflscape}
\begin{document}
% Some text and a figure
\lipsum[1]
\begin{figure}
\centering
\sidesubfloat[]{\includegraphics[scale=0.45]{example-image-a}}
\\
\vspace{1.0cm}
\sidesubfloat[]{\includegraphics[scale=0.45]{example-image-b}}
\end{figure}
\lipsum[1]
% The landscape table
\clearpage
\vspace{4cm}
%\newgeometry{margin=3cm} % This messes up the page number position!
%\thispagestyle{empty} % This erases the page number!
\begin{landscape}
\begin{table*}[!h]
\centering%
\begin{tabular}{llccccccccccc}
\midrule[1pt]
\multicolumn{2}{l}{}& & VLSI'17& ISSCC'17& VLSI'16& ISSCC'15& ISSCC'14& VLSI'17& ISSCC'17& VLSI'16& ISSCC'15& ISSCC'14\\
\multicolumn{2}{l}{}& \multirow{-2}{*}{\textbf{This work}}& [1]& [2]& [3]& [4]& [5]& [1]& [2]& [3]& [4]& [5]\\
\midrule[0.5pt]
\multicolumn{2}{l}{Input range [V$_{\mathrm{pp}}$]}& 1.6& -& 2.0& -& 2.5& 2.0& -& 2.0& -& 2.5& 2.0\\
\multicolumn{2}{l}{Sampling rate [Sa/s]}& 600M& 500M& 9G& 2.5G& 500M& 1G& 500M& 9G& 2.5G& 500M& 1G\\
\midrule[0.5pt]
& LF input& 9.4& 9.1& -& 10.3& 10.5& 11.2& 9.1& -& 10.3& 10.5& 11.2\\
\multirow{-2}{*}{ENOB [bit]} & Nyquist& 9.06& 9.1& 10.7& 10& 10.3& 11& 9.1& 10.7& 10& 10.3& 11\\
\midrule[0.5pt]
\multirow{2}{*}{SNDR [dB]} & LF input& 58.1& 56.7& -& 64& 64.8& 69& 56.7& -& 64& 64.8& 69\\
& Nyquist& 56.3& 56.6& 66& 61.7& 64& 68& 56.6& 66& 61.7& 64& 68\\
\midrule[0.5pt]
\multirow{2}{*}{SFDR [dBc]}& LF input& 67.5& 73& 79& 80& 93& 86& 73& 79& 80& 93& 86\\
& Nyquist& 69.2& 69.2& 79& 73& 82& 82& 69.2& 79& 73& 82& 82\\
\midrule[0.5pt]
\multicolumn{2}{l}{Power [W]}& 14.2m& 6m& 2330m& 1150m& 550m& 1200m& 6m& 2330m& 1150m& 550m& 1200m\\
\multicolumn{2}{l}{FOMW [J/conv.-step]}& 44f& 22f& 715f& 463f& 849f& 585f& 22f& 715f& 463f& 849f& 585f\\
\multicolumn{2}{l}{FOMS [dB]}& 159.5& 162.8& 152.3& 152.1& 150.6& 154.2& 162.8& 152.3& 152.1& 150.6& 154.2\\
\multicolumn{2}{l}{Active area [mm$^{2}$]}& 0.621& 0.015& 5.1& -& 2.5& 18& 0.015& 5.1& -& 2.5& 18\\
\midrule[1pt]
\end{tabular}
\vspace{6pt}
\caption{Performance summary and comparison with state-of-the-art.}
\end{table*}
\end{landscape}
\end{document}



\begin{table}...\end{table}instead of\begin{table*}[!h]...\end{table*}? – Ruixi Zhang Aug 05 '18 at 18:22rotatingpackage. Please take a look at this answer. – Ruixi Zhang Aug 05 '18 at 18:47