在分數表達式中對長分子進行換行

在分數表達式中對長分子進行換行

我在分割這個長方程式時遇到問題。我嘗試了alignedenv 和splitof amsmathpackage 但沒有任何效果!任何幫助。

 $ Sym_{vertical} =  \frac { \mid X^{'}_{UL} - X^{'}_{UR}\mid 
+ \mid X^{'}_{LL} - X^{'}_{LR}\mid 
+ \mid Y^{'}_{UL} - Y^{'}_{UR}\mid             \\  
+\mid Y^{'}_{LL} - Y^{'}_{LR} \mid 
+ \mid H^{'}_{UL} - X^{'}_{UR} \mid 
+ \mid H^{'}_{LL} - H^{'}_{LR} \mid  \\
+\mid B^{'}_{UL} - B^{'}_{UR} \mid 
+ \mid B^{'}_{LL} - B^{'}_{LR} \mid 
+ \mid \Theta^{'}_{UL} - \Theta^{'}_{UR} \mid  \\
+ \mid \Theta^{'}_{LL} - \Theta^{'}_{LR} \mid 
+ \mid R^{'}_{UL} - R^{'}_{UR} \mid 
+ \mid R^{'}_{LL} - R^{'}_{LR} \mid}
{12}$ 

我希望它看起來像這樣:在此輸入影像描述

答案1

我將分子設定為左對齊\Longstack(在數學模式下)。我還必須將其中的一些更改\\+為 ,+\\並將等式的左側設為\mathrm

Mico 正確地指出\mids 應該替換為\lvert, \rvertpairs,並且^{'}是多餘的並且應該被用作'

\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\usepackage{amsmath}
\stackMath
\begin{document}
\[
\mathrm{Sym}_\mathrm{vertical} =  \frac 
{ \Longstack[l]{\lvert X'_{UL} - X'_{UR}\rvert 
+ \lvert X'_{LL} - X'_{LR}\rvert 
+ \lvert Y'_{UL} - Y'_{UR}\rvert             +\\  
\lvert Y'_{LL} - Y'_{LR} \rvert 
+ \lvert H'_{UL} - X'_{UR} \rvert 
+ \lvert H'_{LL} - H'_{LR} \rvert  +\\
\lvert B'_{UL} - B'_{UR} \rvert 
+ \lvert B'_{LL} - B'_{LR} \rvert 
+ \lvert \Theta'_{UL} - \Theta'_{UR} \rvert  +\\
 \lvert \Theta'_{LL} - \Theta'_{LR} \rvert 
+ \lvert R'_{UL} - R'_{UR} \rvert 
+ \lvert R'_{LL} - R'_{LR} \rvert}}
{12}
\]

\end{document}

在此輸入影像描述

如果術語對齊有用,則可以使用 TABstack。

\documentclass{article}
\usepackage{tabstackengine}
\usepackage{amsmath}
\stackMath
\begin{document}
\[
\TABbinary
\mathrm{Sym}_\mathrm{vertical} =  \frac 
{ \tabbedLongstack[l]{\lvert X'_{UL} - X'_{UR}\rvert 
&+ \lvert X'_{LL} - X'_{LR}\rvert 
&+ \lvert Y'_{UL} - Y'_{UR}\rvert            & +\\  
\lvert Y'_{LL} - Y'_{LR} \rvert 
&+ \lvert H'_{UL} - X'_{UR} \rvert 
&+ \lvert H'_{LL} - H'_{LR} \rvert  &+\\
\lvert B'_{UL} - B'_{UR} \rvert 
&+ \lvert B'_{LL} - B'_{LR} \rvert 
&+ \lvert \Theta'_{UL} - \Theta'_{UR} \rvert  &+\\
 \lvert \Theta'_{LL} - \Theta'_{LR} \rvert 
&+ \lvert R'_{UL} - R'_{UR} \rvert 
&+ \lvert R'_{LL} - R'_{LR} \rvert&}}
{12}
\]

\end{document}

在此輸入影像描述

答案2

mathtools套件提供了巨集\splitfrac並且\splitdfrac僅適合您的用例。您可能更喜歡具有四條或三條分割線的解決方案。

在此輸入影像描述

\documentclass{article}
\usepackage{mathtools}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\begin{document}
\[ \textit{Sym}_{\mathrm{vertical}} =  
\frac {% 
\splitdfrac{\abs{X'_{UL} - X'_{UR}}
+ \abs{X'_{LL} - X'_{LR}}
+ \abs{Y'_{UL} - Y'_{UR}}}{%  
\splitdfrac{{}+ \abs{Y'_{LL} - Y'_{LR}}
+ \abs{H'_{UL} - X'_{UR}}
+ \abs{H'_{LL} - H'_{LR}}}{%
\splitdfrac{{}+ \abs{B'_{UL} - B'_{UR}}
+ \abs{B'_{LL} - B'_{LR}}
+ \abs{\Theta'_{UL} - \Theta'_{UR}}}{%
+ \abs{\Theta'_{LL} - \Theta'_{LR}}
+ \abs{R'_{UL} - R'_{UR}}
+ \abs{R'_{LL} - R'_{LR}} }}} }
{12}
\] 

\begin{multline*}
\textit{Sym}_{\mathrm{vertical}} =  \\
\frac {% 
\splitdfrac{
  \abs{X'_{UL} - X'_{UR}}+ \abs{X'_{LL} - X'_{LR}}
+ \abs{Y'_{UL} - Y'_{UR}}+ \abs{Y'_{LL} - Y'_{LR}}}{%  
\splitdfrac{{}
+ \abs{H'_{UL} - X'_{UR}}+ \abs{H'_{LL} - H'_{LR}}
+ \abs{B'_{UL} - B'_{UR}}+ \abs{B'_{LL} - B'_{LR}}}{%  
+ \abs{\Theta'_{UL} - \Theta'_{UR}} + \abs{\Theta'_{LL} - \Theta'_{LR}}
+ \abs{R'_{UL} - R'_{UR}} + \abs{R'_{LL} - R'_{LR}} }}}
{12}
\end{multline*}
\end{document} 

答案3

在表達式前面使用分數:

\documentclass{article}

\usepackage{mathtools}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}

\begin{document}
\[
\mathit{Sym}_{\mathrm{vertical}} =
\tfrac{1}{12}(\,
  \begin{alignedat}[t]{3}
  & \abs{ X'_{UL} - X'_{UR} } &&+ \abs{ X'_{LL} - X'_{LR} } &&+ {}\\
  & \abs{ Y'_{UL} - Y'_{UR} } &&+ \abs{ Y'_{LL} - Y'_{LR} } &&+ {}\\
  & \abs{ H'_{UL} - X'_{UR} } &&+ \abs{ H'_{LL} - H'_{LR} } &&+ {}\\
  & \abs{ B'_{UL} - B'_{UR} } &&+ \abs{ B'_{LL} - B'_{LR} } &&+ {}\\
  & \abs{ \Theta'_{UL} - \Theta'_{UR}  } &&+ \abs{ \Theta'_{LL} - \Theta'_{LR} } &&+ {}\\
  & \abs{ R'_{UL} - R'_{UR} } &&+ \abs{ R'_{LL} - R'_{LR} }\,)
\end{alignedat}
\]
\end{document}

在此輸入影像描述

左側有加號的替代方案。

\documentclass{article}

\usepackage{mathtools}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}

\begin{document}
\[
\begin{split}
\mathit{Sym}_{\mathrm{vertical}} = 
\tfrac{1}{12}(\,
  &  \abs{ X'_{UL} - X'_{UR} } + \abs{ X'_{LL} - X'_{LR} } \\
  &+ \abs{ Y'_{UL} - Y'_{UR} } + \abs{ Y'_{LL} - Y'_{LR} } \\
  &+ \abs{ H'_{UL} - X'_{UR} } + \abs{ H'_{LL} - H'_{LR} } \\
  &+ \abs{ B'_{UL} - B'_{UR} } + \abs{ B'_{LL} - B'_{LR} } \\
  &+ \abs{ \Theta'_{UL} - \Theta'_{UR}  } + \abs{ \Theta'_{LL} - \Theta'_{LR} } \\
  &+ \abs{ R'_{UL} - R'_{UR} } + \abs{ R'_{LL} - R'_{LR} }\,)
\end{split}
\]
\end{document}

在此輸入影像描述

相關內容