How can I make a longtable float at the end? I used standard endfloat package, but it does not support longtables. I have found a modified endfloat on internet, but it puts the longtable in the middle of the text while all other tables are at the end.
Thank you.
Graphics, Figures & Tables ⇒ longtable floating in the end
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: longtable floating in the end
Not sure if I'm telling you what you already know but longtables don't automatically float, you can make them float by putting them in a completely separate document (just the table itself, no document header text) and then inserting that file into the document.
\afterpage{\clearpage\input{C:/filelocation/yourtable}}
This will make the longtable start at the top of a new page. Not sure how you get from there to making it to obey the end floats command but thought this much might get you part way to a solution.
\afterpage{\clearpage\input{C:/filelocation/yourtable}}
This will make the longtable start at the top of a new page. Not sure how you get from there to making it to obey the end floats command but thought this much might get you part way to a solution.