I want to add a TikZ picture beside a text block
\documentclass{article}
\usepackage{lipsum}
\usepackage{tikz}
\begin{document}
\lipsum[1]
\begin{tikzpicture}[color=white]
\node[fill=blue!70,rotate=90] at (0,0) {Vertical Text on Left};
\end{tikzpicture}
\lipsum[2]
\lipsum[3]
\end{document}
but with this structure, the TikZ` picture is inserted at the first line of text, instead of placing side by side.

One solution can be using packages like wrapfig to wrap the text around picture. Isn't there any easier solution to place TikZ figure beside text?


wrapfig; just was curious if there is a simpler solution. – Googlebot Jul 19 '12 at 22:55