0

How do we we write in latex a phrase directly under another symbol. I want to get the r going to infinity directly beneath the Tilda as shown below . However am unable to do so

enter image description here

I tried using \sim_{\r \rightarrow \infty} but this does not work.

DJA
  • 167

1 Answers1

0

Just using \underset{below}{upper}...and I think that you can compile yourself the final code.

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[F_{ij}\underset{r\to\infty}{\sim}\frac{1}{\sqrt{k_j}}\]
\end{document}
Sebastiano
  • 54,118