I have to insert greek letters in place of V_0 and C_t but nothing seems to work. Any hint?
\documentclass[11pt,a4paper]{article}
\usepackage{tikz}
% tikzstyle è deprecato:
% http://tex.stackexchange.com/q/52372/13304
\tikzset{bag/.style={text width=2em, text centered}}% align=center
\begin{document}
\begin{tikzpicture}
\draw[|-stealth] (0,0) -- (8,0) node[right]{$t$};
\foreach \x/\testosopra/\testosotto in {0/V_0/{0},7/C_t/t}{
\draw(\x,0.1)--(\x,-0.1);
\node[above,font=\scriptsize]at (\x,0.1) (\testosopra) {$\testosopra$};
\node[below,font=\scriptsize]at (\x,-0.1) {$\testosotto$};
}
\end{tikzpicture}
\end{document}
