我目前正在使用\documentclass[a4paper]{article}
(非常经典,很好)。
但我想把它改成连续页,有点像 TP 卷。你知道怎么做吗?
答案1
像这样?将long
页面高度设置为 500 厘米,并删除顶部和底部边距,但在页面边界处会有明显的分隔。
从技术上讲,a 尺寸寄存器限制为16384pt
,约为 5.73 米。
\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}