この方程式はページ外にあります。修正方法を教えてください

この方程式はページ外にあります。修正方法を教えてください
\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{equation*}
\partial_t u(t,x)=\left\{
\begin{array}{l l}
\displaystyle{\left(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x G(t,x)R(\xi^t(x)\right)\exp\left(-\int_{\xi^t(x)}^t\partial_x G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)},&(t,x)\in \Omega_1\\
\displaystyle{\left(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)\partial_x G(t,x)\right)\exp\left(-\int_{t_0}^t\partial_xG(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)},&(t,x)\in \Omega_2\\
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}
\begin{equation*}
\partial_x(Gu)(t,x)=\left\{
\begin{array}{l l}
\displaystyle{\left(\partial_xG(t,x)R(\xi^t(x))+ G(t,x)\partial_x\xi^t(x)R'(\xi^t(x))\right)\exp\left(-\int_{\xi^t(x)}^t\partial_x G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)},&(t,x)\in \Omega_1\\
\displaystyle{\left(\partial_xG(t,x)u_0(\chi^t(x))+G(t,x)\partial_x\chi^t(x)u'_0(\chi^t(x))\right)\exp\left(-\int_{t_0}^t\partial_xG(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)},&(t,x)\in \Omega_2\\
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}

\end{document}

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

答え1

各行に長い共通表現があるため、名前を付けることをお勧めします。

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

コードは次のとおりです ( を使用dcases)。

\documentclass{article}

\usepackage{mathtools} % for \shortintertext and \dcases

\begin{document}

For clarity, let us define
\[
E(a)=\exp\biggl(-\int_a^t\partial_x G(s,\Phi_{(t,x)}(s))\,\mathrm{d}s\biggr).
\]
Then we have
\begin{align*}
\partial_t &u(t,x)=\\
&\begin{dcases}
\bigl(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x G(t,x)R(\xi^t(x)\bigr)E\bigl(\xi^t(x)\bigr),&(t,x)\in \Omega_1\\
\bigl(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)\partial_x G(t,x)\bigr)E(t_0),&(t,x)\in \Omega_2\\
0,&(t,x)\in\Omega_3
\end{dcases}\\
\shortintertext{and}
\partial_x&(Gu)(t,x)=\\
&\begin{dcases}
\bigl(\partial_xG(t,x)R(\xi^t(x))+ G(t,x)\partial_x\xi^t(x)R'(\xi^t(x))\bigr)E\bigl(\xi^t(x)\bigr),&(t,x)\in \Omega_1\\
\bigl(\partial_xG(t,x)u_0(\chi^t(x))+G(t,x)\partial_x\chi^t(x)u'_0(\chi^t(x))\bigr)E(t_0),&(t,x)\in \Omega_2\\
0,&(t,x)\in\Omega_3
\end{dcases}
\end{align*}

\end{document}

答え2

基本的に、これらの数式を標準のテキスト幅に収めることはできません。

大きな方程式を分割することができます。2 つの異なる配置方法を示します。

\documentclass{article}
\usepackage{amsmath,mathtools}

\newcommand{\diff}{\mathop{}\!\mathrm{d}}

\begin{document}

\begin{equation*}
\partial_t u(t,x)=
\begin{dcases}
\begin{aligned}[b]
  &\bigl(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x G(t,x)R(\xi^t(x)\bigr) \\
  &\qquad\cdot
   \exp\biggl(-\int_{\xi^t(x)}^t\partial_x G(s,\Phi_{(t,x)}(s))\diff s\biggr),
\end{aligned}
  &(t,x)\in \Omega_1\\[1.5ex]
\begin{aligned}[b]
  &\bigl(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)\partial_x G(t,x)\bigr) \\
  &\qquad\cdot
   \exp\biggl(-\int_{t_0}^t\partial_xG(s,\Phi_{(t,x)}(s))\diff s\biggr),
\end{aligned}
  &(t,x)\in \Omega_2\\[1.5ex]
0,&(t,x)\in\Omega_3
\end{dcases}
\end{equation*}

\begin{equation*}
\partial_t u(t,x)=
\begin{dcases}
\begin{aligned}[b]
  \bigl(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x G(t,x)R(\xi^t(x)\bigr) \\
  \cdot
   \exp\biggl(-\int_{\xi^t(x)}^t\partial_x G(s,\Phi_{(t,x)}(s))\diff s\biggr)&,
\end{aligned}
  &(t,x)\in \Omega_1\\[1.5ex]
\begin{aligned}[b]
  \bigl(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)\partial_x G(t,x)\bigr) \\
  \cdot
   \exp\biggl(-\int_{t_0}^t\partial_xG(s,\Phi_{(t,x)}(s))\diff s\biggr)&,
\end{aligned}
  &(t,x)\in \Omega_2\\[1.5ex]
0,&(t,x)\in\Omega_3
\end{dcases}
\end{equation*}

\end{document}

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

およびdcasesを使用した不自然な構文を避けることに注意してください。array\displaystyle

また、\mbox{d}(直立した)微分記号を取得する最良の方法ではありません。 を使用してください\mathrm{d}。ただし、 コマンドを使用したより良い方法も提案します\diff

答え3

一つの可能​​性は...

\documentclass{article}
\usepackage{amsmath}
\usepackage{tabstackengine}
\TABstackMath
\TABstackMathstyle{\displaystyle}
\renewcommand\stacktype{L}
\renewcommand\stackalignment{r}
\setstackgap{L}{24pt}
\begin{document}

\begin{equation*}
\partial_t u(t,x)=\left\{
\begin{array}{l l}
\tabbedstackanchor{\bigl(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x 
G(t,x)R(\xi^t(x)\bigr)\times}{\exp\left(-\int_{\xi^t(x)}^t\partial_x 
G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)\quad},&(t,x)\in \Omega_1\\[30pt]
\tabbedstackanchor{\bigl(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)
\partial_x G(t,x)\bigr)\times}{\exp\left(-\int_{t_0}^t\partial_xG(s,
\Phi_{(t,x)}(s))\,\mbox{d}s\right)\quad },&(t,x)\in \Omega_2\\[24pt]
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}
\begin{equation*}
\partial_x(Gu)(t,x)=\left\{
\begin{array}{l l}
\tabbedstackanchor{\bigl(\partial_xG(t,x)R(\xi^t(x))+G(t,x)\partial_x
\xi^t(x)R'(\xi^t(x))\bigr)\times}{\exp\left(-\int_{\xi^t(x)}^t\partial_x 
G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)\quad },&(t,x)\in \Omega_1\\[30pt]
\tabbedstackanchor{\bigl(\partial_xG(t,x)u_0(\chi^t(x))+G(t,x)\partial_x
\chi^t(x)u'_0(\chi^t(x))\bigr)\times}{\exp\left(-\int_{t_0}^t\partial_xG
(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)\quad },&(t,x)\in \Omega_2\\[24pt]
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}
\end{document}

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

あるいは、daleifが示唆するように、

\documentclass{article}
\usepackage{amsmath}
\usepackage{tabstackengine}
\TABstackMath
\TABstackMathstyle{\displaystyle}
\renewcommand\stacktype{L}
\renewcommand\stackalignment{l}
\setstackgap{L}{24pt}
\begin{document}

\begin{equation*}
\partial_t u(t,x)=\left\{
\begin{array}{l l}
\tabbedstackanchor{\bigl(\partial_t \xi^t(x)R'(\xi^t(x))-\partial_x 
G(t,x)R(\xi^t(x)\bigr)}{\quad\times\exp\left(-\int_{\xi^t(x)}^t\partial_x 
G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right)},&(t,x)\in \Omega_1\\[30pt]
\tabbedstackanchor{\bigl(\partial_t\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x)
\partial_x G(t,x)\bigr)}{\quad\times\exp\left(-\int_{t_0}^t\partial_xG(s,
\Phi_{(t,x)}(s))\,\mbox{d}s\right) },&(t,x)\in \Omega_2\\[24pt]
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}
\begin{equation*}
\partial_x(Gu)(t,x)=\left\{
\begin{array}{l l}
\tabbedstackanchor{\bigl(\partial_xG(t,x)R(\xi^t(x))+G(t,x)\partial_x
\xi^t(x)R'(\xi^t(x))\bigr)}{\qquad\times\exp\left(-\int_{\xi^t(x)}^t\partial_x 
G(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right) },&(t,x)\in \Omega_1\\[30pt]
\tabbedstackanchor{\bigl(\partial_xG(t,x)u_0(\chi^t(x))+G(t,x)\partial_x
\chi^t(x)u'_0(\chi^t(x))\bigr)}{\qquad\times\exp\left(-\int_{t_0}^t\partial_xG
(s,\Phi_{(t,x)}(s))\,\mbox{d}s\right) },&(t,x)\in \Omega_2\\[24pt]
0,&(t,x)\in\Omega_3
\end{array}
\right.
\end{equation*}
\end{document}

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

関連情報