First we use the `help' option to find out the names of the nodes.
\documentclass[border=1mm]{standalone}
\usepackage{tkz-tab}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=4]
{$x$/1,$f'(x)$/1,$f(x)$/3}
{$-\infty$,$-2$,$0$,$+\infty$}
\tkzTabLine{,,d,+,d,-,
\end{tikzpicture}
\end{document}
and then we play with TikZ
\documentclass[border=1mm]{standalone}
\usepackage{tkz-tab}
\begin{document}
\begin{tikzpicture}
\tkzTabInit[espcl=4]
{$x$/1,$f'(x)$/1,$f(x)$/3}
{$-\infty$,$-2$,$0$,$+\infty$}
\tkzTabLine{,,d,+,d,-,}
\fill[pattern = north west lines] (T13) rectangle (N22);
\draw[double style] (N22) to (N23) (N32) to (N33);
\node[above,fill=white] (n1) at (N23) {$-\infty$};
\node[below left](n2) at (N32) {$+\infty$};
\node[below right](n3) at (N32) {$1$};
\node[above left] (n4) at (N43) {$0$};
\draw[arrow style] (n1) to (n2) (n3) to (n4);
\end{tikzpicture}
\end{document}
\documentclass{...}
, the required\usepackage
's,\begin{document}
, and\end{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.