It seems like the location of the origin depends on the dimensions of the pictures I am drawing. Is it possible to fix the location of the origin yourself, or otherwise to manipulate the location of the whole tikz box in some way?
Minimal Example
For example:
\documentclass{book}
\usepackage{tikz}
\usepackage{amsmath}
\begin{document}
\begin{tikzpicture}
\draw (0, 0) -- (-2, 0);
\end{tikzpicture}
\end{document}
The origin in this picture seems not too far from the left of the page. However, changing the line above to
\draw (0, 0) -- (-10, 0);
shifts the origin to the right.
\noindentbefore\begin{tikzpicture}. If you include\usepackage{show frame}you see that with the\noindentthe picture is all the way to the left. – Peter Grill Jul 12 '19 at 20:46(0,0)should be a point defined by a fixed offset from the paper edges or page margins, but this is not how it works. For this kind of positioning, read Referencing the Current Page Node – Absolute Positioning in the TikZ & PGF Manual. For normal positioning, the bounding box is essential; read section Creating a Picture Using an Environment or the link marmot gave, or that one for instance. – frougon Jul 12 '19 at 22:11