How could I use scalebox to rescale a table such that it fits exactly in the usable page width (i.e., between the margins)? Is there some way in which something such as \hsize could be used as an argument for \scalebox?
Asked
Active
Viewed 1,092 times
2
\resizeboxrather than\scalebox– egreg Oct 24 '13 at 14:33adjustboxpackage, with provides all this in via a very comfortable interface. – Daniel Oct 24 '13 at 14:35adjustboxseems to work for what I'm trying to do. In the table environment, I am initialising the adjustbox environment, which subsequently acts on the tabular environment. The initialisation command for the adjustbox environment is as follows: \begin{adjustbox}{width=\hsize, totalheight=\textheight, keepaspectratio} Given the sheer volume of text in the table, there is no obvious way to contain the table in the page without blunt rescaling of the whole thing, including the text. Thanks for all suggestions! – d3pd Oct 24 '13 at 15:03