I want to create an automaton in tikz and adjust the looseness and bend properties of the edges. If I set the values high, it creates a lot of empty space to the left and below the graphic. In my document, this makes it shift to the right, partially off the page. Here is an mwe.
\documentclass{standalone}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{automata,calc,positioning}
\begin{document}
\begin{tikzpicture}[
node distance=3cm,
clique/.style={fill=SkyBlue},
font=\sffamily,
thick,
]
\node[clique,state] (B) {B};
\node[clique,state,below=of B] (A) {A};
\node[clique,state] at ($(B) !.5! (A) + (2cm,0)$) (C) {C};
\node[clique,state,right=of C] (D) {D};
\node[state,above=of D] (E) {E};
\node[state,right=of D] (F) {F};
\node[state,below left=of F] (H) {H};
\node[state,below=of F] (G) {G};
\path
(A) edge[bend left] (E)
(A) edge[bend right=10] (F)
(A) edge[bend right] (G)
(A) edge (D)
(B) edge[bend right=100,looseness=1.6,out=270] (H)
(B) edge[bend right=100,looseness=1.6,out=260] (G)
(B) edge[bend left=100,looseness=1.2] (F)
(C) edge[bend left=10] (G)
(C) edge[bend left=20] (F)
(C) edge[bend right] (H)
(C) edge (E)
(D) edge (E)
(D) edge (F)
(D) edge (G)
(E) edge (G)
(E) edge[bend left=80,looseness=2] (H)
;
\end{tikzpicture}
\end{document}
The result is this:
I would have it trimmed to the actual content, as standalone usually does.
What causes this and how do I get rid of it?

figure. – oarfish Oct 14 '15 at 19:17\clip (-3,-3) rectangle (3,3)work for clipping the bounding box? (Sorry I can't test now.) – yo' Oct 14 '15 at 19:29