How can I get a square root looking like these in LaTeX? Thanks!
[new picture]
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.
\documentclass{article}
\usepackage{newtxtext,newtxmath}
\begin{document}
$\sqrt{x}$
\end{document}
newtxmath. Any better? Maybe you should explain what you mean by "curly".
– Mico
May 09 '17 at 20:31
$\sqrt{\mathstrut x}$ (with newtxmath) gets closer to the OP’s picture.
– GuM
May 09 '17 at 20:49
A root sign with round corners:
\documentclass{article}
\usepackage{mathptmx}
\begin{document}
\begin{equation}
\sqrt{x}
\end{equation}
\end{document}
If you want more vertical distance between the $x$ and the $\sqrt$ sign then try
\documentclass{article}
\begin{document}
\[
\sqrt{x\vphantom{^2}}
\]
\end{document}
Old one on the right in the image below.
I have used, for times, \usepackage[lite]{mtpro2} and \usepackage{letltxmacro}(do you want in this mode?).
\documentclass[border=1pt]{standalone}
\usepackage{letltxmacro}
\usepackage[lite]{mtpro2}
\makeatletter
\let\oldr@@t\r@@t
\def\r@@t#1#2{%
\setbox0=\hbox{$\oldr@@t#1{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}}
\LetLtxMacro{\oldsqrt}{\sqrt}
\renewcommand*{\sqrt}[2][\ ]{\oldsqrt[#1]{#2} }
\makeatother
\begin{document}
$\sqrt{x} \quad \oldsqrt{x}$
\end{document}
\sqrt{x}? – samcarter_is_at_topanswers.xyz May 09 '17 at 20:09$\sqrt{x}$? – Georg May 09 '17 at 20:09mathptmx– samcarter_is_at_topanswers.xyz May 09 '17 at 20:43