调整表情

调整表情

如何调整这个表情

\documentclass[a4paper,twoside,12pt]{ article}
\usepackage[latin1,utf8,utf8x]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage[french]{babel} 
\frenchbsetup{StandardLists=true}
\usepackage{lmodern}
\usepackage{amsmath} 
%%%%%%%
\usepackage{tabstackengine}  
\TABstackMath
\TABstackMathstyle{\displaystyle}
\renewcommand\stacktype{L}
\renewcommand\stackalignment{r}
\setstackgap{L}{24pt}
%%%%%%%%%
\usepackage{amsfonts} 
\usepackage{amssymb} 
\usepackage{mathrsfs}
\usepackage{mathtools}
\usepackage{hyperref}
\usepackage{amsthm}
\usepackage[mathscr]{euscript}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{wrapfig}
\usepackage{latexsym}
\usepackage{mathtools}

\begin{document}



\begin{equation*}
\partial_tu(t,x)=\left\{
\begin{array}{l l}
\tabbedstackanchor{\Bigl(\partial_t\xi^t(x)R'(\xi^t(x))-\partial_xG(t,x)R(\xi^t(x))-R(\xi^t(x))\int_{\xi^t(x)}^t\partial_x^2G(s,\Phi(s,t,x))\partial_t\Phi(s,t,x)\,\mbox{d}s}{+\partial_t\xi^t(x)R(\xi^t(x))\partial_xG(\xi^t(x),1)\Bigr)\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\\[20pt]
\tabbedstackanchor{\Bigl(\partial_xG(t,x)u_0(\chi^t(x))+G(t,x)\partial_x\chi^t(x)u'_0(\chi^t(x))-u_0(\chi^t(x))\int_{t_)}^t\partial_x^2G(s,\Phi(s,t,x))\partial_t\Phi(s,t,x)\,\,\mbox{d}s\Bigr)}
{\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}

答案1

您的方程式太大,无法容纳在文本区域内。一种解决方案是将数学项分成更多行:

\documentclass{article}
\usepackage[margin=25mm]{geometry}
\usepackage{mathtools,
            nccmath,
            amssymb}
\newcommand{\ud}{\,\mathrm{d}}

\usepackage{lipsum} % for dummy text

\begin{document}
\lipsum[1]
    \begin{equation*}\medmath{
\partial_tu(t,x)=
\begin{cases}
\begin{multlined}
\Bigl(\partial_t\xi^t(x)R'\bigl(\xi^t(x)\bigr) -        \\[-3ex]
      \partial_x G(t,x)R  \bigl(\xi^t(x)\bigr) -
      R(\xi^t(x)) \int_{\xi^t(x)}^t \partial_x^2G\bigl(s,\Phi(s,t,x)\bigr)
      \partial_t\Phi(s,t,x)\ud s +                      \\[-2ex]
      \partial_t\xi^t(x)R \bigl(\xi^t(x)\bigr)
                         \partial_x G\bigl(\xi^t(x),1\bigr)\Bigr)
    \times\exp\biggl(-\int_{\xi^t(x)}^t
        \partial_x G(s,\Phi_{(t,x)}(s))\ud s\biggr),
\end{multlined}
    &   (t,x)\in \Omega_1              \\[9ex]
\begin{multlined}
\Bigl(\partial_x G(t,x)u_0 \bigl(\chi^t(x)\bigr) +
    G(t,x)\partial_x \chi^t(x)u'_0\bigl(\chi^t(x)\bigr) -          \\[-2ex]
    u_0\bigl(\chi^t(x)\bigr)
    \int_{t_)}^t \partial_x^2 G\bigl(s,\Phi(s,t,x)\bigr)
                 \partial_t\Phi(s,t,x) \ud s\Bigr)
\times\exp\biggl(-\int_{t_0}^t \partial_x G(s,\Phi_{(t,x)}(s)) \ud s\biggr)
\end{multlined}
    &(t,x)\in \Omega_2              \\[7ex]
0,
    &   (t,x)\in\Omega_3
\end{cases}
    }\end{equation*}
\lipsum[2]
\end{document}

这使:

在此处输入图片描述

正如您所见,我实际上重写了您的方程式。相反,array我使用cases环境(来自amsmath加载的包mathtools),定义\ud导数,修复所有括号不匹配,并使用\medmath包中的宏以较小的字体写出整个方程式nccmath

相关内容