Displaying 1 result from an estimated 1 matches for "tabsmall".
Did you mean:
abysmall
2009 Aug 07
0
RE xtable, sweave and resizebox
...longtable} on your LaTeX preamble
x <- matrix(rnorm(1000), ncol = 10)
x.big <- xtable(x,label='tabbig',caption='Example of longtable spanning
several pages')
print(x.big,tabular.environment='longtable',floating=FALSE)
x <- x[1:30,]
x.small <- xtable(x,label='tabsmall',caption='regular table env')
print(x.small) # default, no longtable
## Demonstration of sidewaystable support.
## Remember to insert \usepackage{rotating} on your LaTeX preamble
print(x.small,floating.environment='sidewaystable')
if(require(stats,quietly=TRUE)) {
.../...
HTH...