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!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- 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}