1

I'm looking for a documentclass or a setup where the paper size (like A4) and "page breaks" aren't part of the output.

How do I end up with one long pdf, with no page distraction?

Søren
  • 11

1 Answers1

1

You can adjust the page dimensions with the geometry package.

\documentclass{article}
\usepackage{blindtext}
\usepackage[paperheight=100cm,margin=2cm]{geometry}

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

enter image description here