I am beginner in Latex I've been trying for a day to draw a super simple straight line with three nodes on that. it goes fine but when I see the pdf. the beginning node doesn't start from the beginning of the line. it's a bit on the right side compared to a paragraph above it. I am so frustrated not to be able to control it.
Please don't make this question as a duplicate one I searched a lot couldn't find the answer.
The code is:
\begin{tikzpicture}
\filldraw[red]
(0,0) circle (2pt) node[blue,above]{$bin_1$} --
(15,0) circle (2pt) node[blue,above] {$bin_{nyquist}$} --
(7,0) circle (2pt) node[blue,above] {$k_1$};
\end{tikzpicture}
I meant coordinate (0,0). It is not the beginning of the line it's a bit in the right side compared to the paragraph above it. how can force it to go to the beginning of the line.

tikzpictureis only relative to the other things inside thetikzpicture, so(0,0)has no direct connection to the start of the line. The first node label ($bin_1$) will probably extend to the left of (0,0). – Torbjørn T. Oct 05 '16 at 11:18\noindentto remove it, or put the picture into aflushleftenvironment. The remaining indentation is the border of the label{$bin_1$}; if you change it tonode[blue,above,inner sep=0mm]{$bin_1$}this indentation is also gone. But now the label is too close to the node, so you neednode[blue,above,inner sep=0mm,yshift=0.5ex]{$bin_1$}to counter act that. – gernot Oct 05 '16 at 11:22