0.
12 Región entre dos curvas, filldraw
\begin{center}
\begin{tikzpicture}
%
\filldraw[draw=black,fill=gray!20]
plot [domain=0:1] (\x,{sqrt(\x)})
-- plot [smooth,domain=1:0] (\x,\x^2)
-- cycle;
%
\draw[->] (-0.5,0) -- (1.5,0);
\draw [->] (0,-0.5) -- (0,1.5);
%
\end{tikzpicture}
\end{center}
0.13 Región dentro de una curva cerrada definida
por coordenadas
\begin{center}
\begin{tikzpicture}
%
\filldraw[draw=black,fill=gray!50]
plot[smooth cycle] coordinates{
(0.2,1)(1,2)(2,1)(1,0.5)};
%
\draw[->] (-0.5,0) -- (2.5,0);
\draw [->] (0,-0.5) -- (0,2.2);
%
\end{tikzpicture}
\end{center}
10
0.14 Datos estadı́sticos
\newcommand{\misDatos}
{(0,0)(1,0)(2,2)(3,0)(4,6)(5,4)(6,7)(7,4)(8,3)(9,0)(10,1)}
\begin{center}
\begin{tikzpicture}[scale=0.8]
\draw [very thin, gray] (0,0) grid (11,8);
\foreach \y in {1,2,...,7} \draw(-1,\y)node[left]{\y};
\foreach \x in {0,1,...,10} \draw(\x,0)node[below]{\x};
%
\draw plot coordinates {\misDatos};
\end{tikzpicture}
\end{center}
0 1 2 3 4 5 6 7 8 9 10
11