I have a TikZ picture which I want to include as a centered figure in my LaTeX document. However, the "centering" I am trying to achieve is somewhat special and best explained by the image below:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\draw[fill] (0,0) circle [radius=0.075] node [inner sep=0pt] (c) {};
\draw [red] (c) edge [bend right] node[at end, right]{this is the center} (5,-1);
\end{tikzpicture}
\caption{}
\end{figure}
\end{document}
resulting in

How can I make the picture to be centered around the "center"-dot, e.g. by specifying the node (c) which is to be put in the horizontal middle of the page?


\centershould be\centering?\centeris just the beginning of thecenterenvironment which is not appropriate in this case, see When should we use \begin{center} instead of \centering?. – Tobi Nov 15 '14 at 10:32