Está en la página 1de 1

\documentclass{article} \usepackage{tikz} \begin{document} %sin opacidad, el crculo cubre la imagen de fondo \begin{tikzpicture} \includegraphics{fibonacci} \filldraw [blue] (-2,2) circle

(1cm); \end{tikzpicture} \vspace{3cm} %con opacidad, el crculo permite ver la imagen de fondo \begin{tikzpicture} \includegraphics{fibonacci} \filldraw [blue,opacity=0.4] (-2,2) circle (1cm); \end{tikzpicture} \vspace{3cm} %sin opacidad, los nodos cubren la imagen de fondo \begin{tikzpicture} \includegraphics{fibonacci} \node at (-2,3) [circle,draw=red,fill=red!80] {}; \node at (-2,2) [circle,draw=blue,fill=blue!80] {}; \node at (-2,1) [circle,draw=green,fill=green!80] {}; \node at (-1,2) [rectangle,draw=yellow,fill=yellow!80] {}; \node at (-3,2) [rectangle,draw=purple,fill=purple!80] {}; \end{tikzpicture} \vspace{3cm} %con opacidad, los nodos permiten ver la imagen de fondo \begin{tikzpicture} \includegraphics{fibonacci} \node at (-2,3) [circle,draw=red,fill=red!80,opacity=0.4] {}; \node at (-2,2) [circle,draw=blue,fill=blue!80,opacity=0.4] {}; \node at (-2,1) [circle,draw=green,fill=green!80,opacity=0.4] {}; \node at (-1,2) [rectangle,draw=yellow,fill=yellow!80,opacity=0.4] {}; \node at (-3,2) [rectangle,draw=purple,fill=purple!80,opacity=0.4] {}; \end{tikzpicture} \end{document}

También podría gustarte