Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Sweave and latex() from the Hmisc package to insert a longtable in my PDF.

When I do it the first time, the table is spread nicely, filling up the pages with the table.

If I do it again, some pages are only half full (like page 4 of PDF), which looks weird and somehow wrong because it seems to be unnecessary space.

Is there a way to control this? Or what could I do to improve the look? Especially, if I'm adding some text and graphs, it won't look good with the empty space on page 4.

\documentclass{article}

\usepackage{Sweave}
\usepackage{longtable}
\usepackage{booktabs}

\begin{document}
\SweaveOpts{concordance=TRUE}

I want to insert this longtable
<<tab.R,echo=FALSE,results=tex>>=
library(Hmisc)
#library(xtable)
x <- matrix(rnorm(1000), ncol = 10)
x.big <- data.frame(x)
latex(x.big,"",file="",longtable=TRUE, dec=2,caption='First longtable spanning several pages')
@

then write some text. Maybe add a graph...

And then another table
<<tab.R,echo=FALSE,results=tex>>=
latex(x.big,"",file="",longtable=TRUE, dec=2,caption='Second longtable spanning wrongly')
@

\end{document}
share|improve this question
you know that there exists a stackexchange portal dedicated to latex questions - it is to be found at tex.stackexchange.com. I have flagged your question for migration. – epsilonhalbe Jul 10 '12 at 11:45
Actually, I didn't know, I'm quite new. Thanks for pointing that out! By flagging it for migration, will it automatically appear on tex.stackexchange.com or do I have to ask again there? – physh Jul 10 '12 at 15:18
it can take some time but i think it will be migrated, as soon as some moderator looks this way. – epsilonhalbe Jul 10 '12 at 16:36

1 Answer

up vote 4 down vote accepted

Don't pass this question over to the latex group, this is a problem of Hmisc/latex that adds a \clearpage into tex every 40 lines by default. Check parameter lines.page=40 of latex. I do not understand why this default has been set, but something like

latex(x.big,"",file="",longtable=TRUE, dec=2,
  caption='Second longtable spanning wrongly', lines.page=4000)

gets you around the problem.

share|improve this answer
Thank you so much, now the table looks exactely as it should. – physh Jul 13 '12 at 8:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.