[Tex/LaTex] How to make the fancyhdr footer to be longer than \textwidth

fancyhdrheader-footermargins

I'm using XeLaTeX with fancyhdr. I need to have the footer wider than \textwidth. This is an intentional effect. The problem is that the footer is several lines long, so I want them to appear as a single paragraph, wider than \textwidth. I'm not sure how best to do that.

Best Answer

Here's a simple way:

\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lipsum}
\cfoot{\hspace*{-.1\textwidth}\parbox{1.2\textwidth}{\lipsum[1]}}

It doesn't look great, and you'll probably have to increase how much space the footer is allowed to take up, but you get the picture...