5

I am currently writing a document using \documentclass[a4paper]{article} (very classic, good and all).

But I want to change it to a continuous page, a bit like a TP roll. Any idea how?

Mmmh mmh
  • 117

1 Answers1

7

Something like this? Faking a long page height with 500cm and removing top and bottom margins, but there will be a distinguished separation at the page boundary.

TeXnically the a dimension register is restricted to 16384pt, which is about 5.73m.

\documentclass[12pt]{article}
\usepackage{microtype}

\usepackage[paperheight=500cm,paperwidth=10cm,vmargin={0pt,0pt},left=1cm,right=1cm,headheight=0pt]{geometry}


\usepackage{blindtext}
\pagestyle{empty}

\begin{document}
\blindtext[1000]
\end{document}