获得居中的“详细方程”

获得居中的“详细方程”

假设在文本中间我想要获得如下公式: 在此处输入图片描述 它应该像方程式环境一样居中。括号内有一个文本和一些内联方程式。

实现此目的最简单的方法是什么?

答案1

tabular使用具有固定宽度的paragraph 列设置内容:

在此处输入图片描述

\documentclass{article}

\usepackage[nopar]{lipsum}

\begin{document}

\lipsum[1]
\[
  * = \left\{
    % Adjust spacing around tabular, if needed.
    %\setlength{\tabcolsep}{.5\tabcolsep}% ...default is 6pt
    \begin{tabular}{p{.7\linewidth}}
      Here is some ordinary text with inline mathematics $f(x) = ax^2 + bx + c$ and
      then some more text that might span multiple lines \ldots
    \end{tabular}
  \right\}
\]
\lipsum[2]

\end{document} 

tabular如果需要,您还可以调整与周围支架之间的间隙。

相关内容