The gorgeous picture below represents the relation between the quantum number J and a interesting parameter - the Ray asymmetry parameter -, which relates the three dimensional inertia moments of a given molecule. In other words, for the same type of rotational transition, how the energy changes with the shape of the molecule, as it goes from a prolate (rugby-ball shape) to a spheroid and finally into an oblate (a frisbee-like shape).
I am trying to depict it in LaTeX but I can't get the labels properly. any idea would be greatly appreciated!
Below you'll find my MWE (inspired from the link posted by putianyi888)
\documentclass[tikz]{standalone}
\usetikzlibrary{shapes.callouts}
\tikzset{
level/.style = {
ultra thick,
blue,
},
connect/.style = {
dashed,
red
},
notice/.style = {
draw,
rectangle callout,
callout relative pointer={#1}
},
label/.style = {
text width=2cm
}
}
\begin{document}
\begin{tikzpicture}
\draw[level](2,0) -- node[above] {left} (3,0); \draw[connect](3,0) -- (7,0); \draw[level](7,0) -- (8,0);
\draw[level](2,2) -- (3,2); \draw[connect](3,2) -- node[below](7,3); \draw[level](7,3) -- (8,3); \draw[connect](3,2) -- (7,1); \draw[level](7,1) -- (8,1);
\end{tikzpicture}
\end{document}

