I have a long table which extends over two pages in the appendix below .
The table is not placed on the top of these pages.
Is it normal to leave it like this?
How can I put it on the top of a page? Please suggest if you see something wrong about this.
\documentclass[journal]{IEEEtran}
\usepackage{lipsum}
\usepackage{newtxtext, newtxmath}
\usepackage[export]{adjustbox}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\usepackage{caption}
\begin{document}
\lipsum
\appendix
\begin{table}[b]
\caption{Table with images}
\label{tab:image}
\adjustboxset{width=\linewidth, valign=M}
\begin{tblr}{hlines, vlines,
colsep=3pt,
colspec= {c {3}{X[c,m]} },
row{1} = {font=\bfseries},
rowsep = 3pt,
}
No & C1 & C3 & C4 \
1 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
2 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
3 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
4 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
\end{tblr}
\end{table}
\begin{table}[t]
\ContinuedFloat
\caption{Table with images}
\label{tab:image}
\adjustboxset{width=\linewidth, valign=M}
\begin{tblr}{hlines, vlines,
colsep=3pt,
colspec= {c {3}{X[c,m]} },
row{1} = {font=\bfseries},
rowsep = 3pt,
}
No & C1 & C3 & C4 \
5 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
6 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
7 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
8 & \adjincludegraphics{example-image-a}
& \adjincludegraphics{example-image-b}
& \adjincludegraphics{example-image-c} \
\end{tblr}
\end{table}
\end{document}




longtblrwhich would span one big table over two+ pages. You would get top aligned (sub)tables on the first and subsequent pages. – Celdor Sep 06 '22 at 08:59IEEEtranclass is to vertically center the floats on their pages. – Pieter van Oostrum Sep 06 '22 at 09:30