在 LaTeX 中用括号写出两线方程

在 LaTeX 中用括号写出两线方程

在此处输入图片描述

我该如何在 Latex 中写这个。我不想要这个图。我该如何以方程形式写它

答案1

您可以通过多种方式实现这一点。最简单的方法之一是使用 stackengine包:

\documentclass{article}
\usepackage{amsmath}
\usepackage[usestackEOL]{stackengine} 

\begin{document} 

\[ \left(\Centerstack{rate of mass\\accumulation}\right) = \left(\Centerstack{rate of \\ mass in}\right)- \left(\Centerstack{rate of \\ mass out}\right) \]%

\end{document} 

在此处输入图片描述

答案2

无需任何软件包的解决方案 - 也适用于 Plain TeX:

\documentclass[20pt]{extarticle}

\begin{document}

\[ \pmatrix{\hbox{rate of mass} \cr \hbox{accumulation} } = 
   \pmatrix{\hbox{rate of} \cr \hbox{mass in}} - 
   \pmatrix{\hbox{rate of} \cr \hbox{mass out}} \]

\end{document}

在此处输入图片描述

相关内容