数式を含む長い段落を数式に配置する方法

数式を含む長い段落を数式に配置する方法

ここに画像の説明を入力してください数式環境にテキストを埋め込む問題に対処する質問がすでにいくつか見つかりましたが、私のケースではどの解決策もうまくいきませんでした。ほとんどの人は \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$、環境\parbox内に配置しますequation

\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}

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

関連情報