I have a question on how to "style" the self loops in my diagram.
Here is my preamble:
\documentclass[letterpaper]{tufte-handout}
% Additional LaTeX Packages
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
% LaTeX TikZ Graphics Package
\usepackage{tikz}
\usetikzlibrary{arrows}
\tikzset{
>=stealth,
auto,
node distance=3.5cm,
font=\scriptsize,
possible world/.style={circle,draw,thick,align=center},
real world/.style={double,circle,draw,thick,align=center},
minimum size=40pt
}
and here is my current attempt at a diagram:
\begin{figure}
\centering
\begin{tikzpicture}
\node[real world] (1) {$\World_{1}$ \\ $H,L$};
\node[possible world] (2) [right of=1] {$\World_{2}$ \\ $\neg{H},L$};
\node[possible world] (3) [below of=1] {$\World_{3}$ \\ $\neg{H},L$};
\node[possible world] (4) [right of=3] {$\World_{4}$ \\ $\neg{H},L$};
\path[]
(1) edge [loop above,thick] node {$A,B,C$} (1)
(2) edge [loop above,thick] node {$A,B,C$} (2)
(3) edge [loop below,thick] node {$A,B,C$} (3)
(4) edge [loop below,thick] node {$A,B,C$} (4)
(1) [<->,thick] edge node[above] {$B$} (2)
(3) [<->,thick] edge node[below] {$A,B,C$} (4)
(1) [->,thick] edge node[left] {$C$} (3)
(1) [->,thick] edge node[right] {$C$} (4)
(2) [->,thick] edge node[left] {$C$} (3)
(2) [->,thick] edge node[right] {$C$} (4);
\end{tikzpicture}
\caption{Successor state, $\State_{2}$, obtained after $A$ peeks into the strongbox and learns that the coin is facing heads up without the knowledge of his fellow agents.}
\label{fig:multi-modal-strongbox:peek-2-successor}
\end{figure}
The picture that I am getting looks like this:

But I really want the arcs to look like the ones in this example:

I don't mind having the labels be above or below the arc and not in the middle, but the overall shape of the self loops is what I'm interested in replicating.
Also, as a side note - I've been unable to find a way to increase the horizontal separation between the nodes. Any suggestions would be appreciated.

outandin) as well as theloosenessand/or thedistanceof the loops, see Prevent oval loops when using Tikz package – Qrrbrbirlbel Nov 02 '13 at 06:32