I want a vertical strip in full length of the page as shown here:
If the logo is an image, it would be better. How to achieve this? Thanks in advance.
I want a vertical strip in full length of the page as shown here:
If the logo is an image, it would be better. How to achieve this? Thanks in advance.
Just flashing out Manuel's instructions.
\documentclass{article}
\usepackage{tikz}
\usepackage{tikzpagenodes}
\usepackage{eso-pic}
\usepackage{lipsum}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{decorations.text}
\begin{document}
\AddToShipoutPictureBG{
\begin{tikzpicture}[opacity=0.5,overlay,font=\sffamily\textbf\Huge]
\draw[blue!50!white,line width=1cm,%
postaction={decorate,decoration={raise=-0.1cm,text along path,text align=center,
text=LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO LOGO}}] (current page text area.south) -- (current page text
area.north);
\end{tikzpicture}
}
\lipsum[1-10]
\end{document}
overlay,remember pictureand some anchors around the page node you can do that. – Manuel Jan 21 '18 at 19:09