I am looking for ways to change the paper size throughout a pdf document. I know that I can specify classotion: a3paper
for the entire document in the yaml header. I also know that I can change margins with the geometry package
(\newgeometry{· · ·}
and \restoregeometry
) throughout a document. Unfortunately, there is no option to change paper sizes, with the geomerty package, throughout a document though.
I would like to do something like this but with paper size instead. Is it even possible?
I am asking because I have some wide tables in my document where letters and numbers overlap when having a(4|5|6)paper specified. Other tables are narrow and I would like to have them bigger.
My table output is not from kable
or any other easily modifiable package outputs e.g xtable
. So what I am saying is I can't modify the dimensions of my table in my code.
Any help is much appreciated. Thank you.