I wanto to draw this graph whit Tikz:
I have this code:
\begin{tikzpicture}[scale=0.2]
\begin{scope}
% Relleno gris superior e^x
clip \fill [color=gray!40, domain=-1.2:1.2, variable=\x]
(-1.2, 0)
-- plot ({\x}, {exp(\x)})
-- (-1.2, 3.29) -- cycle;
% % Relleno blanco inferior de e^-x
clip \fill [color=white, domain=-1.2:1.2, variable=\x]
(-1.2, 0)
-- plot ({\x}, {exp(-\x)})
-- (1.2, 0) -- cycle;
\end{scope}
\begin{scope}
% Relleno gris inferior e^x
clip \fill [color=gray!40, domain=-1.2:1.2, variable=\x]
(-1.2, 0)
-- plot ({\x}, {exp(\x)})
-- (1.2,0) -- cycle;
% Relleno blanco inferior de e^-x
clip \fill [color=white, domain=-1.2:1.2, variable=\x]
(-1.2, 3.29)
-- plot ({\x}, {exp(-\x)})
-- (1.2, 3.29) -- cycle;
\end{scope}
% Funciones e^x
\draw[-] plot[domain=-1.2:1.2] (\x,{exp(\x)});
% Funciones e^-x
\draw[-] plot[domain=-1.2:1.2] (\x,{exp(-\x)});
% coordinate grid
\draw[->] (-4,0)--(4,0) node[right]{$x$};
\draw[->] (0,-4)--(0,4) node[above]{$y$};
\draw (0,1) node[ right] {{\tiny $1$}};
\end{tikzpicture}



