Eu tenho este código:
\begin{frame}
\pagestyle{empty}
\frametitle{Tvorba grafu}
\begin{tikzpicture}[scale=1.7]
\shade[top color=blue,bottom color=gray]
(0,0) parabola (1.25,2.5) |- (0,0);
\draw[line width=0.25, ->] (0,0) -- (4,0) node[above] {$x$};
\draw[line width=0.25, ->] (0,0) -- (0,4) node[right] {$y$};
\draw[style=help lines] (0.001,0.001) grid (3.9,3.9);
\draw (0,0.25) parabola bend(0,0) (2,4) node[below right] {$x^2$};
\foreach \x/\xtext in {1/1, 2/2, 3/3}
\draw[shift={(\x,0)}] (0pt,2pt) -- (0pt,-2pt) node[below] {$\xtext$};
\foreach \y/\ytext in {1/1, 2/2,3/3}
\draw[shift={(0,\y)}] (2pt,0pt) -- (-2pt,0pt) node[left] {$\ytext$};
\draw (1.1cm,2pt) node[above] {$\displaystyle\int_0^{3} \!\!x^2\mathrm{d}x$};
\end{tikzpicture}
\end{frame}
O problema está em:
shade[top color=blue,bottom color=gray] (0,0) parabola (1.25,2.5) |- (0,0);
Há problema, erro de látex.
Mas se eu tiver este comando:
\shade[top color=blue,bottom color=gray] (0,0) parabola (1.25,2.5) -| (0,0);
Seu trabalho, sem erro.
Responder1
Ambos os comandos de sombreamento funcionam conforme o esperado. Com
\shade[top color=blue,bottom color=gray]
(0,0) parabola (1.5,2.25) |- (0,0);% shaded below of parabola
você obtém
e com
\shade[top color=blue,bottom color=gray]
(0,0) parabola (1.5,2.25) -| (0,0);% shaded left of parabola
Para meu teste, reescrevi ligeiramente seu MWE (exemplo do manual TikZ e PGF, pp. 874):
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\usepackage{mathtools}
\begin{document}
\begin{frame}[plain]
\frametitle{Tvorba grafu}
\begin{tikzpicture}[scale=1.5]
% grid
\draw[help lines] (0,0) grid (3.9,3.9);
% axis
\draw[->] (0,0) -- (4,0) node[above] {$x$};
\draw[->] (0,0) -- (0,4) node[right] {$y$};
\foreach \i in {1, 2, 3}
{
\draw (2pt,\i) -- + (-4pt,0) node[left] {$\i$};
\draw (\i,2pt) -- + (0,-4pt) node[below] {$\i$};
}
% parabola
\draw (0,0) parabola bend (0,0) (2,4) node[below right] {$x^2$};
\draw (1.05,0) node[above] {$\displaystyle\int_0^{3}\kern-1.75ex x^2\,\mathrm{d}x$};
\scoped[on background layer]
\shade[top color=blue,bottom color=gray]
(0,0) parabola (1.5,2.25) |- (0,0);
\end{tikzpicture}
\end{frame}
\end{document}
Coordenada ortogonal |-
significa primeiro verticalmente, depois horizontalmente e -|
oposta. Esta é a sua pergunta?