I want to draw a few pictures in line using tikz. I added a few pictures for your understanding. The first pictures is fine, but in the second is some kind of line break which I don't want.


The code I'm using is:
\documentclass{article}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\setlength\PreviewBorder{5pt}
\begin{document}
\begin{preview}
\begin{tikzpicture}[font=\sffamily]
% draw 1
\end{tikzpicture}
\hspace*{10pt}
\begin{tikzpicture}[font=\sffamily]
% draw 2
\end{tikzpicture}
\hspace*{10pt}
\begin{tikzpicture}[font=\sffamily]
% draw 3
\end{tikzpicture}
\end{preview}
\end{document}
Do you have any ideas how to draw these pictures in line?
standaloneclass:\documentclass[border=5pt]{standalone} \usepackage{tikz} \begin{document} \begin{tikzpicture} ... \end{tikzpicture} \end{document}You can then include them directly into a main file with thestandalonepackage. – Martin Scharrer♦ Mar 18 '11 at 21:56