Graphics, Figures & Tables ⇒ Two Tables in one "sidewaystable" Environment
Two Tables in one "sidewaystable" Environment
My problem is that even when I copy the example provided in that topic, my sideways tables do not respect the left/right margins of the paper. They start right on the edge of the paper.
Thanks for any insights
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: Two Tables in one "sidewaystable" Environment
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Two Tables in one "sidewaystable" Environment
I'm using \documentclass{amsart} instead of {article}.
Then the tables are not centered. Any workarounds or tips?
(from the top of my head: is it possible to put the tables on separate tex files and then include them in a similar way as I include PDFs, for instance?)
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Two Tables in one "sidewaystable" Environment
The classes of AMSLaTeX are known to cause trouble like this. If you don't need any special features you can use other classes. Packages of AMSLaTeX can be included in every other class as well.leandrocc wrote:[…] I'm using \documentclass{amsart} instead of {article}. Then the tables are not centered. Any workarounds or tips? […]
As long as you use \input to read them from the external files.leandrocc wrote:[…] is it possible to put the tables on separate tex files and then include them in a similar way as I include PDFs, for instance? […]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Two Tables in one "sidewaystable" Environment
Thanks for the help!