Vertical spacing is killing me lately. First I had to learn how to get rid of automatically-generated vertical-spacing after center environment because it was off (\partopsep+\topsep), then I had to learn how to get rid of automatically-generated vertical-spacing after equation or \[\] environments (set belowdisplayskip and belowdisplayshortskip to 0) because it was off. Now I have difficulties with positioning line of text EVENLY between two horizontal lines drawn with tikz. This is crazy! (could it be more simple, like HTML?)
So I am counting on you to help me out with this.
\documentclass[border=5mm,varwidth=150mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\path[draw](0,0)--(\textwidth,0);
\end{tikzpicture}\\
hello\\
\begin{tikzpicture}
\path[draw=red](0,0)--(\textwidth,0);
\end{tikzpicture}
\end{document}`

Obviously, the text should be slightly lower.







