I'm writing a document with long and wide tables spilling over the margin area in a two side document class. I'm using the Marco Daniel's fullwidth package.
Using longtable (and even longtabu) the tables correctly 'runs' over the margin but, the headings and footers unexpectedly disappears. This is a MWE:
\documentclass[twoside,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage[inner=1in, width=345pt]{geometry}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{array}
\usepackage{fullwidth}
\newlength{\tablewidth}
\setlength{\tablewidth}{\textwidth}
\addtolength{\tablewidth}{1in}
\begin{document}
\lipsum[1-2]
\begin{fullwidth}[outermargin=-1in]
\begin{longtable}{p{0.5\tablewidth}p{0.5\tablewidth}}
\toprule
Loren & Ipsum\\
\midrule
\endhead
\lipsum[1] & \lipsum[2]\\ \midrule
\lipsum[3] & \lipsum[4]\\ \midrule
\lipsum[5] & \lipsum[6]\\
\bottomrule
\end{longtable}
\end{fullwidth}
\lipsum[5]
\begin{longtable}{p{0.5\tablewidth}p{0.5\tablewidth}}
\toprule
This & Works\\
\midrule
\endhead
\lipsum[1] & \lipsum[2]\\ \midrule
\lipsum[3] & \lipsum[4]\\ \midrule
\lipsum[5] & \lipsum[6]\\
\bottomrule
\end{longtable}
\end{document}
I'm also tried Marco's mdframded solution posted here, but headings still doesn't appear.
Any ideas?
Thanks in advance.


fullwidthdoes nothing here. It seems that you are looking for a new feature oflongtable. – touhami Jan 26 '16 at 13:11