分母中的總和下的單字

分母中的總和下的單字

如果我嘗試這個;

Substituting the expression for \(\Psi\) in to the above and rearranging we derive an expression for the vacuum field \(\Psi'\) as a function of \(\mu \),

\begin{equation}
\Psi' = \frac{\Phi_t}{\mu ab\left[1+ \frac{4}{\pi^2}\sum_{m,n \mbox{ odd }} \frac{\alpha_{mn}}{mn}\right]} \\[1ex]
\end{equation}

with the sum being over odd \(m,n\). The total magnetic flux is defined as just the sum of the flu

然後這很奇怪,因為 {m,n \mbox{ odd }} 被迫位於求和的右側而不是下方。這是因為它在分母上。我該如何解決?

答案1

總結建議: (1)\displaystyle一般用於增加分母中的 和 分數的大小\sum,以及從下標位置改為和下的極限。 (2) 使用包裝中的\textrm或代替。使用周圍的文字字體,該字體對於下標或限制來說大小錯誤,並且可能是錯誤的字體。 (3) 此外,以某種方式控制括號的大小以及總和以下的限制所佔用的垂直空間也是有用的。這可以透過為括號 (和) 選擇明確大小命令並使用限制來完成。\textamsmath\mbox\mbox\biggl[\biggr]\smash

\documentclass{article}
\begin{document}
Substituting the expression for \(\Psi\) in to the above and rearranging
we derive an expression for the vacuum field \(\Psi'\) as a function of
\(\mu \),
\begin{equation}
  \Psi' = \frac{\Phi_t}{\mu ab \biggl[ \displaystyle 1 + \frac{4}{\pi^2}
          \sum_{\smash{m,n\ \textrm{odd}}} \frac{\alpha_{mn}}{mn}\biggr]}
\end{equation}
with the sum being over odd \(m,n\). The total magnetic flux is defined
as just the sum of the flu
\end{document}

如果只想更改限制的位置,則可以使用\sum\limits代替\sum(但也可以替換\mbox)。

相關內容