Background
Using LyX to create a document and xetex to leverage a TrueType font. The entire text is within a minipage. Ultimately, I'm trying to produce the following output (no white page background, single image, captured from OpenOffice):

Problem - Update #1
Adding tolerance and emergencystretch produces:

Preamble
The document preamble:
\usepackage{fontspec}% provides font selecting commands
\usepackage{xunicode}% provides unicode character macros
\usepackage{xltxtra} % provides some fixes/extras
\setmainfont{Franklin Gothic Book}
\usepackage[parfill]{parskip}
\usepackage[none]{hyphenat}
\usepackage{microtype}
\usepackage[margin=0.2in]{geometry}
\setlength{\textwidth}{6cm}
\tolerance=1
\emergencystretch=\maxdimen
Idea - Update #2
The program pdfcrop can be used to remove all the extra whitespace in the margins.
Related Links - Update #3
- http://rene.bz/convert-multi-page-pdf-single-image/
- http://linuxers.org/quick-tips/convert-pdf-file-single-image-using-imagemagick
Question
How can you render a document as a single image (or as one very, very long page), ignoring any pagination, in a justified (newspaper-style) column format?
Thank you!
--to become one long dash. I guess that the only lines of the preable you need arefontspecand\setmainfont. 3) Then just putting\setlength{\paperheight}{100in}\setlength{\textheight}{96in}in the preamble should be enough. 4) Using\usepackage{microtype}you can get slightly better-looking result. – tohecz Jun 10 '12 at 22:38geometrypackage to force the text shape you need? That may allow one very long page, which wouldn't print nicely but could be captured from the pdf as the image you want. – Ethan Bolker Jun 10 '12 at 22:52