I'm running into an issue. It seems that when I try to output more than 17 or 18 tables to a pdf document the remaining tables are ignored. When I split them across multiple Rnw files, there is no problem loading any of them.
It's not returning any errors, nor does the output of the first 17 or 18 tables seem to be anything other than expected.
- Windows 7 Pro
- Miketex 2.29
- RStudio (Using CompilePdf())
- R Version 2.14.1
I'm using the following packages:
\documentclass[12pt]{report}
\usepackage[landscape]{geometry}
% PREAMBLE
\usepackage{wallpaper}
\usepackage[linktoc=Section]{hyperref}
\usepackage{fullpage}
Any ideas? Or things that I can double check?
[h]option, which causes a well known problem: if TeX isn't able to place the first table, it delays it and all subsequent ones, running out of space after 18 tables. – egreg Jan 29 '12 at 15:42xtable()from R uses this option as the default and I see no option of changing it (other than building my own, which I'd prefer not to do). – Brandon Bertelsen Jan 29 '12 at 16:51\makeatletter\renewcommand{\table}[1][]{\@float{table}[!htp]}\makeatotherthat will make\begin{table}ignore an[h]optional argument and use[!htp]instead. – egreg Jan 29 '12 at 16:56morefloatswouldn't solve the problem, as all the tables would be printed at the end of the chapter anyway. – egreg Jan 29 '12 at 16:58\clearpageto the end of every table removed the issue entirely. If you put that as an answer, I'll accept it as your solution since it was the first paragraph of the document you suggested. – Brandon Bertelsen Jan 29 '12 at 18:45