방정식이 포함된 긴 단락을 방정식에 배치하는 방법

방정식이 포함된 긴 단락을 방정식에 배치하는 방법

여기에 이미지 설명을 입력하세요방정식 환경에 텍스트를 삽입하는 문제를 해결하기 위해 이미 찾은 몇 가지 질문이 있지만 제 경우에는 어떤 솔루션도 작동하지 못했습니다. 대부분의 사람들은 \text를 사용하여 텍스트를 분리할 것을 제안하지만, 텍스트 단락이 길면 형식이 제대로 지정되지 않습니다. 누구든지 이것에 대한 더 깔끔한 방법을 제안할 수 있습니까?

내 코드는 다음과 같습니다.

우리는 여기서 시간과 유사한 최대 실린더에 대한 다음과 같은 코시 문제에 관심을 갖고 있습니다.

\documentclass{article}
\usepackage{amsmath, amsthm, amsfonts}
\newcommand{\fii}{\varphi}
\begin{document}
    \begin{equation} \label{CP} \tag{CP}
    \begin{split}
    \text{Given an initial, smoothly immersed curve}\ s\mapsto (\fii_0(s),0) \in M \text{satisfying} \\
    \fii_0(s)=\fii_0(s+1), \text{and a smooth, uniformly timelike vector field}\ X(s)\in T_{(\fii_0(s),0)}M \\
    \text{along the curve, find a time}\ T\in (0,\infty] \text{and a smooth, maximally immersed cylinder} \Sigma \\
    \text{which may be parametrized such that}\ \fii(s,0)=\fii_0(s) \text{and such that}\ X(s)\in T_{(\fii_0(s),0)}\Sigma
    \end{split}
    \end{equation}  
\end{document}

그리고 여기에 출력이 있습니다!

답변1

수학을 사용하여 텍스트로 작성 하고 환경 내부 $inline$에 배치하십시오 .\parboxequation

\documentclass{article}
\usepackage{amsmath, amsthm, amsfonts}
\newcommand{\fii}{\varphi}
\begin{document}   
\begin{equation} \label{CP} \tag{CP}
  \parbox{4in}{%
    Given an initial, smoothly immersed curve $s\mapsto (\fii_0(s),0) \in M$ satisfying
    $\fii_0(s)=\fii_0(s+1)$, and a smooth, uniformly timelike vector field $X(s)\in  
    T_{(\fii_0(s),0)}M$ along the curve, find a time $T\in (0,\infty]$ and a smooth, 
    maximally immersed cylinder $\Sigma$ which may be parametrized such that 
    $\fii(s,0)=\fii_0(s)$ and such that $X(s)\in T_{(\fii_0(s),0)}\Sigma$%
}
\end{equation}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보