[Tex/LaTex] The size of roots

formattingmath-modesymbols

I can't get to the root of this problem: I need the second root to be the same height as the first one

$\sqrt{F} \: \sqrt{F_{x_x}}$

I know I can use \vphantom, but I don't know how.

Best Answer

Aligning square roots in the same formula requires some work if the symbols under the square root are not uniform in height and depth.

You can either add a phantom to the first square root or smash the bottom of the second one:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

$\sqrt{F} + \sqrt{F_{x_x}}$  % original

\medskip

$\sqrt{F\vphantom{F_{x_x}}} + \sqrt{F_{x_x}}$ % phantom

\medskip

$\sqrt{F} + \sqrt{\smash[b]{F_{x_x}}}$ % smash

\end{document}

enter image description here