I'm using \documentclass[preprint,review,12pt]{elsarticle}, my tables which I would like to appear in the middle of text goes to the very end page of my article, this is really not what I looking for as I want to give some explanation and analyze the result. What should I do, is it due to elsarticle class or what? Is there anyway to fix it if so.
Thank you in advance,
elsarticledocument class is built on the more basicarticledocument class and doesn't contain code that would ipso facto force all floats to be output at the very end of the document. Thus, it's more likely that there's something about one or more of thetableenvironments that's causing the problem. Please tell us more about the specifics of the document'stableenvironments. E.g., do you load them with any particular positioning specifiers (e.g.,h,t,b,p)? How tall are they? Does anything happen if you change, say,\begin{table}to\begin{table}[htbp]? – Mico Apr 11 '20 at 05:03\begin{table}[htbp], awesome, thank you! this is the same table you[ suggested here] ( https://tex.stackexchange.com/questions/537846/how-to-fix-this-table-in-latex/537867?noredirect=1#comment1358993_537867) with 20 rows. – ELLA Apr 11 '20 at 05:32tableandfigure, I highly recommend reading the posting How to influence the position of float environments like figure and table in LaTeX and, in particular, Frank Mittelbach's answer. – Mico Apr 11 '20 at 06:08