Hvala.
Koristio sam PGF/TikZ, kod se kuca u LaTeX-u, pocetnik sam i nisam mnogo vešt (sto ce se videti i iz koda). Evo i koda:
Code:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc,decorations.markings}
\begin{document}
\begin{tikzpicture}
% Configurable parameters
\def\gap{0.2}
\def\bigradius{3}
\def\littleradius{0.5}
% Axes
\draw [help lines,->] (-1.25*\bigradius, 0) -- (1.25*\bigradius,0);
\draw [help lines,->] (0, -1.25*\bigradius) -- (0, 1.25*\bigradius);
% Red path
\draw[fill=orange!50,line width=1pt, decoration={ markings,
mark=at position 0.2455 with {\arrow[line width=1.2pt]{>}},
mark=at position 0.765 with {\arrow[line width=1.2pt]{>}},
mark=at position 0.87 with {\arrow[line width=1.2pt]{>}},
mark=at position 0.97 with {\arrow[line width=1.2pt]{>}}},
postaction={decorate}]
let
\n1 = {asin(\gap/2/\bigradius)},
\n2 = {asin(\gap/2/\littleradius)}
in (\n1:\bigradius) arc (\n1:360-\n1:\bigradius)
-- (-\n2:\littleradius) arc (-\n2:-360+\n2:\littleradius)
-- cycle;
% The labels
\node at (3.6,-0.2){$x$};
\node at (-0.24,3.53) {$iy$};
\node at (-0.6,0.43) {$\gamma_{\varepsilon}$};
\node at (-1.8,2.8) {$\gamma_{R}$};
\node at (1.9,0.29) {$l_2$};
\node at (1.555,-0.32) {$l_1$};
%\draw [decoration={ markings,
% mark=at position 1/6 with {\arrow[line width=1.2pt]{>}},
% mark=at position 0.5 with {\arrow[line width=1.2pt]{>}},
% mark=at position 5/6 with {\arrow[line width=1.2pt]{>}}},
% postaction={decorate}]
% (0,0) circle (2cm);
\draw[fill=white,line width=1pt, decoration={ markings,
mark=at position 0.0001 with {\arrow[line width=1.2pt]{<}},
mark=at position 0.4 with {\arrow[line width=1.2pt]{<}},
mark=at position 0.8 with {\arrow[line width=1.2pt]{<}}},
postaction={decorate}]
(1.128,1.667) circle (7pt)
(-2,0) circle (7pt)
(1.128,-1.667) circle (7pt);
\end{tikzpicture}
\end{document}
[Ovu poruku je menjao Sonec dana 22.03.2013. u 18:19 GMT+1]