I'm using tikz to represent an axe. The code is the following:
\documentclass[a4paper,oneside,12pt]{article}
\usepackage{tikz}
\usepackage{xcolor}
\usetikzlibrary{trees}
\usepackage{relsize}
\usepackage{longtable,geometry}
\usepackage[frenchb]{babel}
\usepackage{wrapfig}
\usepackage{graphicx}
\geometry{dvips,a4paper,margin=1in}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel]{csquotes}
\usetikzlibrary{decorations}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{decorations.shapes}
\usetikzlibrary{decorations.text}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{decorations.fractals}
\usetikzlibrary{decorations.footprints}
\MakeAutoQuote{«}{»}
\pagestyle{headings}
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw[thick,>=stealth,->] (0,0) node[below] {$-\infty$} -- (2.8,0) node[below]
{$\frac{\mathlarger{-e}}{\mathlarger{(1-\theta)}}-f$} node {$\bullet$} -- (5.6,0)
node[below] {$\frac{\mathlarger{-v}}{\mathlarger{(1-\theta)}}-f$} node {$\bullet$} --
(8.4,0) node[below] {$\frac{-2f-e-\sqrt{e^2-\frac{4ev}{1-\theta)}}}{2}$} node
{$\bullet$} -- (11.4,0) node[below] {$\frac{-2f-e+\sqrt{e^2-\frac{4ev}
{1-\theta)}}}{2}$} node {$\bullet$} -- (14.2,0) node[below] {$-f$} node{$\bullet$}--
(17,0) node[below] {$\omega(M)$} ;
\draw[color=black,decorate,decoration={brace, raise=0.8cm}]
(0,0) -- (5.57,0) node[above,pos=0.5] {E1};
\draw[color=black,decorate,decoration={brace, raise=0.8cm}]
(5.63,0) -- (8.37,0) node[above,pos=0.5] {E1, E2};
\draw[color=black,decorate,decoration={brace, raise=0.8cm}]
(8.43,0) -- (11.37,0) node[above,pos=0.5] {E1, E2, E3};
\draw[color=black,decorate,decoration={brace, raise=0.8cm}]
(11.43,0) -- (14.17,0) node[above,pos=0.5] {E1, E2};
\draw[color=black,decorate,decoration={brace, raise=0.8cm}]
(14.23,0) -- (16.7,0) node[above,pos=0.5] {E2};
\draw[color=red,decorate,decoration={brace, mirror, raise=1.5cm}]
(0,0) -- (2.77,0) node[below,pos=0.49] {E5};
\draw[color=red,decorate,decoration={brace, mirror, raise=1.5cm}]
(2.83,0) -- (17,0) node[below,pos=0.5] {E4};
\end{tikzpicture}
\end{center}
\end{document}
How can I move the text E4 and E5 for it to be closer to the red brace?
Thanks in advance, and sorry if the layout is not the right one.

below=1cmin theE4andE5nodes? – percusse Apr 23 '12 at 10:38