The following tikz node fills up a whole a4 page. The page gets cropped afterwards using the crop-package (just for demonstration purposes, commenting the package out, doesn't seem to change anything). As long as I don't draw a rectangle around the node or a diagonal line for example everything is fine.
Drawing for example a diagonal line (see the screenshot and the comment in the following MWE) a page break occurs. My - ugly - workaround: I slightly (.281) increase the paper's height.
My question[s]: What exactly causes the page break? Do you know a better workaround?
\RequirePackage{luatex85}
\documentclass{article}
\usepackage[%
paperheight=210mm,
% paperheight=210.2812mm,%increasing the height seems to work, but ugly
paperwidth=297mm,
margin=0cm,
]{geometry}
\usepackage[cam,a3,landscape,center]{crop}
\usepackage[main=english]{babel}
\usepackage{tikz}
\setlength{\parindent}{0pt}
\begin{document}
\pagestyle{empty}%
\begin{tikzpicture}%
\coordinate (p);%
\node[%
fill=green,
minimum height=210mm,
minimum width=297mm,
anchor=west,
inner sep=0pt,
outer sep=0pt]%
(backFlap) at (p) {%
\huge Hello World!%
};%
%uncommenting any of these drawings causes a pagebreak -- why?
% \draw[thick,black]
% (backFlap.north west) rectangle (backFlap.south east) {}%
% (backFlap.north east) -- (backFlap.south west) {}%
% (backFlap.north west) -- (backFlap.south east) {}%
% ;%
\end{tikzpicture}%
\end{document}
