Graphics, Figures & Tables ⇒ Chapter title plus sideways table
Chapter title plus sideways table
Is there any way to get them on the same page? The table would be small enough to fit below the title.
Thanks in advance!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Chapter title plus sideways table
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Chapter title plus sideways table
EDIT: I managed to solve this by making this the beginning of the table:
Code: Select all
\begin{table}[h]\footnotesize
Chapter title plus sideways table
the code:
Code: Select all
\usepackage{lscape}
\usepackage{rotating}
\usepackage{adjustbox}
\usepackage{ctable}
\appendix
\section{A}\label
\begin{sidewaystable}[h]\footnotesize
\centering
\caption{A1}
\begin{adjustbox}{width=\textwidth,totalheight=\textheight,keepaspectratio}
\begin{tabular}{p{6cm} l c c c c c c c p{5cm} c p{5cm} c p{3cm} c p{5cm} c}
...
\end{tabular}
\label{APX1}
\end{adjustbox}
\end{sidewaystable}