答案1
您可以非常简单地做到这一点stackengine
:它的\Centerstack
命令处于文本模式。
\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\begin{document}
{\sffamily\[ \Centerstack[l]{ Variation of \\neutron number\\ in time}{}={}\Centerstack[l]{Rate of \\production\\ of neutrons}{}-{}\Centerstack[l]{Rate of\\ absorption \\ of neutrons} {}-{}\Centerstack[l]{Rate of \\leakage\\ of neutrons}\]}%
\end{document}
答案2
您可以将每个文本段括在 中\pbox
。请注意,这需要pbox
包。这样,您可以将每个文本块视为一个数学对象。
\documentclass{article}
\usepackage{pbox}
\begin{document}
$\pbox{3cm}{Variation of\\ neutron number\\ in time} = \pbox{3cm}{Rate of\\ production\\ of neutrons} - \pbox{3cm}{Rate of\\ absorption\\ of neutrons}-\pbox{3cm}{Rate of\\ leakage\\ of neutrons}$
\end{document}
它将\pbox
缩小其宽度以适应您的文本,因此您只需要比实际宽度更宽的宽度。我在示例中选择了 3cm。