我怎样才能得到像这样的平方根?

我怎样才能得到像这样的平方根?

我怎样才能在 LaTeX 中得到像这样的平方根?谢谢!

在此处输入图片描述

[新图片]

答案1

我猜您正在寻找数学字体包的服务newtxmath。请注意,如果您使用它,您可能还应该使用配套的newtxtext文本字体包。不过,请检查您是否想要(或被允许)在文档中使用 Times Roman 克隆。

在此处输入图片描述

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

答案2

带圆角的根符号:

\documentclass{article}
\usepackage{mathptmx}

\begin{document}

\begin{equation}
\sqrt{x}
\end{equation}

\end{document}

在此处输入图片描述

答案3

如果你想要 $x$ 和 $\sqrt$ 符号之间的垂直距离更大,那么尝试

\documentclass{article}


\begin{document}
    \[
    \sqrt{x\vphantom{^2}}
    \]
\end{document}

下图右侧为旧的。

在此处输入图片描述

答案4

我已经使用了,对于times\usepackage[lite]{mtpro2}\usepackage{letltxmacro}(您想要这种模式吗?)。

在此处输入图片描述

\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}

相关内容