I am relatively new to Latex and I am struggeling with the use of the tikzpicture package.
What I want to do is to create a coloured column on the left side of every page in my document. Curently I am using the following code for this.
\begin{tikzpicture}[remember picture,overlay]
\node [rectangle, fill=sidecolor, anchor=north, minimum width=9cm, minimum height=\paperheight+1cm] (box) at (-5cm,0.5cm){};
\end{tikzpicture}
The problem is that this code only produces a coloured bar on the first page of my document and does not extend it to multiple pages.
My question is therefore, how do i implement this tikzpicture to multiple pages in my document?. Does anyone have any insights on how to tackle this problem.
Note: I am not trying to make a header or footer.
Kind regards.
Thanks!
eso-picpackage? – Feb 15 '18 at 14:30backgroundpackage or thetikzpagenodespackage. See e.g. Getting a particular kind of page border using background package – Alan Munn Feb 15 '18 at 14:33