[Tex/LaTex] How to get a square root looking like this?

math-modemath-operators

How can I get a square root looking like these in LaTeX? Thanks!

enter image description here

[new picture]

Best Answer

I guess you are looking for the services of the newtxmath math font package. Note that if you use it, you should probably also use the companion newtxtext text font package. Do check, though, if you want to (or are allowed to) use a Times Roman clone for your document.

enter image description here

\documentclass{article}
\usepackage{newtxtext,newtxmath}
\begin{document}
$\sqrt{x}$
\end{document}