I am relatively new to LaTeX and have been trying to implement a table into a paper I am working on. No matter what I do, however, I keep running into the problem of the table appearing after the bibliography despite coming first in the document. The following is the code:
\clearpage
\begin{table}[H]
\caption{Sample APA table}
\centering
\begin{tabular}{ll}
\toprule
Mean & \ Standard Deviation \\
\midrule
Row 1 & Data 1 \\
Row 2 & Data 3 \\
\bottomrule
\end{tabular}
\end{table}
\FloatBarrier
\nocite{*}
\printbibliography
\end{document}
I have tried using \newpage as well as changing the float placement of the table. No matter what, though, the table comes after the bibliography. Any ideas? Thank you!
[H]either you should get an error thatHis not defined (if you have not used the float package) or it will not float and not go to the end, – David Carlisle Mar 29 '24 at 21:42\clearpagebefore the bibliography. – Pieter van Oostrum Mar 29 '24 at 22:02\clearpageinstead of\newpage? – Mico Mar 29 '24 at 22:13\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – jlab Mar 29 '24 at 22:57