I'm trying to have a tabulary-table on a landscape page in a portrait document.
Because I want to have the table use the full width, I tried to set it width to \textwidth, but the width of the table is only as wide as the textwidth is on a portrait page.
How can I make the table using the correct width?
Since I am using XeLaTeX the MWE contains Unicode-Characters!
MWE:
\documentclass[a4paper]{scrartcl}
\usepackage{tabulary}
\usepackage{lscape}
\title{MWE – tabulary rotate}
\subtitle{Textwidth is way to small}
\author{John Doe}
\begin{document}
\maketitle
\begin{landscape}
\begin{table}
\begin{tabulary}{\textwidth}{RJL}
\emph{Left} & \emph{Middle} & \emph{Right} \\
This is a text that shall be a litte bit longer, and longer!
& And even this text is meant to be not so short that it is just simple short…
& Also there is the last column, which shall not be just a handful of letters
but an full sentence instead, that doesn't not even to make sense!
\end{tabulary}
\end{table}
\end{landscape}
\end{document}
lscapedoesn't rotate the page head/foot and if you change\textwidthmany settings of the page head went wrong.\linewidthis normally used within the page so it was safer to set that. – David Carlisle Apr 26 '13 at 20:14overfull \hboxes? – kando Sep 03 '15 at 22:34