Document Classes ⇒ \endfloat question
\endfloat question
I am using the \endfloat package (thank you, by the way, it is exactly what I needed).
I need one table to appear in the body of the text, instead of at the end. Is there a way to omit one float from the queue and place it in the text?
Thank you.
Mike
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: \endfloat question
one idea: don't use the table environment for this table, just write the tabular (or another) environment there. You don't need the float environment table. For a caption you could use \captionof from the caption package (or capt-of), then it will be numbered and listed inside the list of tables. I would expect complications with the table counter then (because of endfloat) but perhaps this can be repaired.
Stefan
Re: \endfloat question
Yes! Thank you. I actually did not need it to be numbered, so your solution worked perfectly.
Mike