I do not have your poster, so I made something up. You can use the following steps:
- Create your poster and save it in a
\savebox.
- Clip on parts of it.
To make the second task more convenient, I added as style that installs local coordinates (as in this answer) and does all the repeating steps. So to clip on a part of the poster you need only to say
\begin{tikzpicture}[poster clip]
\clip (0.2,0.3) rectangle (0.45,0.5);
\end{tikzpicture}
The coordinates are such that (0,0) is the lower left corner and (1,1) the upper right corner of the poster.
\documentclass{article}
\usepackage{tikz}
\newsavebox\myposter
\sbox\myposter{\begin{tikzpicture}
\draw[left color=blue,right color=red] (0,0) rectangle (12,15)
node[midway,font=\Huge\sffamily\bfseries,text=white,align=center]
{Imagine\\ I was a\\ fancy\\ poster};
\end{tikzpicture}}
\tikzset{poster clip/.style={execute at begin picture={
\node[overlay,anchor=south west,inner sep=0pt,opacity=0] (poster) {\usebox\myposter};
\begin{scope}[x={(poster.south east)},y={(poster.north west)}]
},execute at end picture={\node[anchor=south west,inner sep=0pt] (poster) {\usebox\myposter};
\end{scope}}}}
\begin{document}
\usebox\myposter
\clearpage
\section{Blub}
\begin{tikzpicture}[poster clip]
\clip (0.2,0.3) rectangle (0.45,0.5);
\end{tikzpicture}
\clearpage
\section{Pft}
\begin{tikzpicture}[poster clip]
\clip (0.45,0.5) circle[radius=4cm];
\end{tikzpicture}
\end{document}

tikz'sspylibrary see section §72 of thepgfmanual– BambOo Sep 29 '19 at 13:39spycan only be used in the same picture environment. And I know of no way to span a picture across multiple pages. – Robert Siemer Sep 29 '19 at 16:28