中心化された「冗長な方程式」を取得する

中心化された「冗長な方程式」を取得する

テキストの途中で次のような数式を取得したいとします。 ここに画像の説明を入力してください 方程式環境のように中央に配置する必要があります。括弧内にはテキストといくつかのインライン方程式があります。

これを行う最も簡単な方法は何ですか?

答え1

tabular固定幅のp段落列を使用してコンテンツを設定します。

ここに画像の説明を入力してください

\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必要に応じて、周囲のブレースとの隙間を調整することもできます。

関連情報