多行文本方程

多行文本方程

我正在尝试做以下事情:

在此处输入图片描述

有人能举个例子说明如何做到这一点吗?它需要像环境一样位于纸张中间$$ $$,如果可以贴上标签并在以后引用,那就更好了。

答案1

您可以在常规中设置文本\parbox

在此处输入图片描述

\documentclass{article}
\newcommand{\textbox}[3][c]{\parbox[#1]{#2}{\strut#3\strut}}
\begin{document}
\begin{equation}
  \left\{\textbox{2cm}{Here is some regular text}\right\} =
    \left\{\textbox{2cm}{Here is some more regular text}\right\} +
    \left\{\textbox{3cm}{This is the last piece of text in the equation}\right\} \label{eqn:myeqn}
\end{equation}
See~(\ref{eqn:myeqn}).
\end{document}

\parbox[<valign>]{<width>}{<stuff>}设置<stuff>为宽度为paragraph并根据(op、entered 或ottom)垂直对齐。在开始/结尾处使用s 试图纠正与装箱相关的间距问题。作为参考,请参阅box<width><valign>tcb\strut\baselineskip使用minipages (或es) 时如何保持常数\parbox

使用宏的想法是\textbox是为了促进排版一致性

相关内容