diff options
author | Ian Jauslin <jauslin@ias.edu> | 2019-05-13 22:20:51 -0400 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2019-05-13 22:20:51 -0400 |
commit | d0c870377cc4e0388a343a6297f7ec5fa54adf16 (patch) | |
tree | c78480b7f9f1e70f1bd9ebb84a8f6aae2e754f4e /figs/contour.fig/contour.tikz.tex |
As presented at MSU on 2019-05-02v1.0
Diffstat (limited to 'figs/contour.fig/contour.tikz.tex')
-rw-r--r-- | figs/contour.fig/contour.tikz.tex | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/figs/contour.fig/contour.tikz.tex b/figs/contour.fig/contour.tikz.tex new file mode 100644 index 0000000..953d8f0 --- /dev/null +++ b/figs/contour.fig/contour.tikz.tex @@ -0,0 +1,34 @@ +\documentclass{standalone} + +\usepackage{tikz} + +\def\pole#1{ + \draw#1++(0.1,0.1)--++(-0.2,-0.2); + \draw#1++(-0.1,0.1)--++(0.2,-0.2); + \draw[color=red, line width=1pt]#1circle(0.3); +} + +\begin{document} +\begin{tikzpicture} + +% branch cut +\fill[color=gray](-3.3,-0.1)--++(3.3,0)--++(0,0.2)--++(-3.3,0)--cycle; + +% axes +\draw(-3.3,0)--++(6.6,0); +\draw(0,-3.3)--++(0,6.6); + +% -ik0^2 +\pole{(0,-2)} + +% other poles +\input{poles.tikz} + +% contour +\draw[color=red, line width=1pt](-3.3,-0.3)--++(3.3,0); +\draw[color=red, line width=1pt](0,-0.3)..controls(0.3,-0.3)and(0.3,0.3)..(0,0.3); +\draw[color=red, line width=1pt](-3.3,0.3)--++(3.3,0); + + +\end{tikzpicture} +\end{document} |