I would like to reproduce some scheme of Strogatz book with tiks or ps-plot. I've tried the whole afternoon and there is always something that goes wrong.
My code is
\begin{tikzpicture} \begin{axis}[ clip=false, xmin=0,xmax=9, xlabel= $x$, ylabel=, ymin=-1.5,ymax=1.5, axis lines=middle, %axis x line=middle, %axis y line=left, % axis x line=middle, xtick={0, 3.14, 6.28}, xticklabels={$0$,$\pi$,$2\pi$} ] \addplot[domain=0:8,samples=200,blue]{sin(deg(x))}node[left,pos=1.1]{$\sin x$}; \end{axis} \draw node[fill=black,circle]{} (0,0) \end{tikzpicture} However, it doesn't put the node on the right place.
