0

Hi I get this big gap between two tables when I upload the code generated by excel2latex as a seperate .tex file using the \include command. if I however just copy the code and run, the space is not there. Please advice.

ArkanSaaS
  • 113
  • Without seeing an example, I don't anyone here is going to be able to guess what your problem is. Can you upload a minimal-but-compilable example that demonstrates what you are seeing? – Thruston Apr 22 '16 at 14:49

1 Answers1

2

\include{fred} starts a new page before typesetting the file fred.tex. Use \input{fred} instead.

Peter Wilson
  • 28,066