Advertisement
Guest User

Untitled

a guest
May 2nd, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.26 KB | None | 0 0
  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary{calc}
  4. \begin{document}
  5. \begin{tikzpicture}
  6. \foreach \x  in {1}
  7. \pgfmathparse{100*\x}
  8. \filldraw[fill=blue!\pgfmathresult!white, draw=black] (0,0) rectangle (\x,\x);
  9. \end{tikzpicture}
  10. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement