I need to know the correct way of handling vertical alignment in TIKZ. Let me elaborate an example:
\documentclass{article} \usepackage{amsmath,tikz} \begin{document} \begin{tikzpicture} \node (A1) at (0,4) {($\overset{\surd}{1}$ \indent 2)}; \node (B1) at (0,3) {($\overset{\surd}{3}$ \indent 4)}; \node (A) at (2,4) {$\phi_1$} ; \node (B) at (2,3) {$\phi_2$} ; \draw [->, line width=1pt] (A) -- (A1) node [near start, above] { \footnotesize{R1} }; \node (A2) at (6,4) {$7^1$ \indent $8^1$ \indent $3^1$ \indent $4^1$\indent $\parallel$ 2}; \node (B2) at (6,3) {$1^3$ \indent $2^3$ \indent $5^3$ \indent $6^3$\indent $\parallel$ 4}; %fake caption \node at (8,4.5) {fake}; \end{tikzpicture} Which results in this:

I just want to know is ther any way to force the lines into a bottom line here so that $\phi_1$ and the left would be aligned? Should I use phantom to do so or is there any thing better I am unaware of?
The next point is about the word "fake" in the top right corner. I want it over the "2" but I have placed it as a node. I could use \overset{fake}{\overline{2}} to have a "fake" above the "2" but it pushes the line to the left which is not desired. And as you might have guessed I also need a line between "fake" and "2" should I use \overline{2}?