mahi mahi skrev:
> How can i created rectangular gradient in latex without using .eps.
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\shade[left color=white,right color=black]
(0,0) rectangle (4,2);
\shade[top color=white,bottom color=black]
(5,0) rectangle (9,2);
\end{tikzpicture}
\end{document}