I have several landscape pages in a larger document.
I would like to place a TikZ picture centered a current page.center while using the remember picture and overlay keys for the environment.
But there seems to be some kind of conflict between TikZ and the pdflscape package I'm using.
\documentclass[border=3pt]{article}
\usepackage{pdflscape}
\usepackage{tikz}
\usepackage[margin=1in]{geometry}
\begin{document}
\begin{landscape}
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.center)
{\includegraphics[width=\textwidth,
height=\textheight,
keepaspectratio,
]{example-image}};
\end{tikzpicture}
\end{landscape}
\end{document}
Results in
I was hoping for something more like
though the page number would appear differently.

