Scaling down a wide table for PDF #1354
-
I'm working on an article manuscript that includes several very wide tables (regression coefficients from 3+ models) built using Here's what I've tried:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can try |
Beta Was this translation helpful? Give feedback.
-
And how does it work with typst? |
Beta Was this translation helpful? Give feedback.
You can try
kableExtra::kable_styling(latex_options = "scale_down")
to adjust the width of the table to the page.kableExtra
also allows you to control column widths and font size. That and possibly landscape mode should cover all cases. If not, it probably means that you need to rethink the structure of your table. E.g., one column = one variable or split your tables in smaller ones.