I'm trying to create a longtabu that is a bit wider than the normal margins.
other answers refer to adjustwidth and tabular/tabularx/table. They don't appear to work for longtabu/tabu.
\documentclass{article}
\usepackage{tabu}
\usepackage{longtable}
\usepackage{changepage}
\begin{document}
\newlength{\mylength}
\setlength{\mylength}{\paperwidth}
\addtolength{\mylength}{-2cm}
%\hspace*{-4.5cm}\begin{minipage}[c]{\mylength}
\begin{adjustwidth}{-20cm}{}
\begin{longtabu} to \mylength {| p{1.5cm} | p{2cm} | p{5cm}| X |}
\hline
a & b & c & d \\
\hline
\end{longtabu}
\end{adjustwidth}
%\end{minipage}
\end{document}
EDITS: Using minipage breaks the long table aspect of the table. Just runs off the end of the page if you have a lot of rows.
The commented hspace/minipage does work but it looks clunky. Surely, there's a perttier way. Why can't I just say "center this table on the page. forget the margins"?
no I don't want to move over by 20cm. it's a number I picked to make it clear that something actually happened.
The data in this example is only an example. My actual data wants to use as much of the page as possible. Use of the right side is a simple matter of overflow. I also want to get back some of the space on the left.
tabu– Mario S. E. Mar 31 '15 at 22:55