如何让带有 sqrt 的文本分数看起来更美观

如何让带有 sqrt 的文本分数看起来更美观

基本上,我想做的事情是:

[ sqrt( (some text here) + (texthere2) ) ] / [ texthere ]

我该如何正确地做到这一点?

答案1

“适当”实际上是一种观点。

我一般会选择:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
  \frac{\sqrt{(\text{some text here}) +
      (\text{texthere2})}}{\text{texthere}}
\]

\end{document}

在此处输入图片描述

所以就像您期望的那样,除非您有一些需要满足的特定要求,在这种情况下您应该更具体地说明这一点。

相关内容