mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
12 lines
368 B
TeX
12 lines
368 B
TeX
% Thanks to Jake: http://tex.stackexchange.com/a/142815/5645
|
|
\documentclass[border=5pt]{standalone}
|
|
\usepackage{tikz}
|
|
\usetikzlibrary{arrows}
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}
|
|
\draw [red] (0,0) circle [radius=1];
|
|
\draw [domain=1:18.8,variable=\t,smooth,samples=200,->,>=stealth']
|
|
plot ({\t r}: {1+2*exp(-0.1*\t)});
|
|
\end{tikzpicture}
|
|
\end{document}
|