How to align tikzpicture outside figure environment without introducing vertical space? I'm aware of related questions, such as What is the correct way to center a \tikzpicture? and Should I use center or centering for figures and tables?. From there I notice that the following code:
\begin{center}
\begin{tikzpicture}
....
\end{tikzpicture}
\end{center}
does the center alignment of the tikzpicture as desired but it introduces unwanted vertical space. I tried to simply replace the \begin{center} \end{center} pair with \begin{centering} \end{centering}, but it doesn't work.
\begin{center}is fine, what the links said was not to use\begin{center}if you're also using\begin{figure}– Jake Feb 22 '13 at 15:21