중심에 있는 "자세한 방정식"을 얻습니다.

중심에 있는 "자세한 방정식"을 얻습니다.

텍스트 중간에 다음과 같은 수식을 얻고 싶다고 가정해 보겠습니다. 여기에 이미지 설명을 입력하세요 방정식 환경처럼 중앙에 위치해야 합니다. 괄호 안에는 텍스트와 일부 인라인 방정식이 있습니다.

이를 수행하는 가장 간단한 방법은 무엇입니까?

답변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필요한 경우 괄호와 주변 괄호 사이의 간격을 조정할 수도 있습니다 .

관련 정보