描述列表

描述列表

我该如何更改以下代码以获得更好的表现?

\documentclass[a4paper]{article}
\usepackage{amsmath}
\begin{document}

\begin{description}

\item $z_{i( j,l,m) }^{\perp }=\dfrac{( \mathrm{f}+1+2x_{jl}x_{jm}x_{lm}) z_{i( j,l,m) }-1}{\mathrm{f}+1} -%
\dfrac{2{ S_{\mathbf{z}_{( j,l,m) }}^{1\-- \mathrm{f}}}+(\mathrm{f}-1) {S_{\mathbf{z}_{( j,l,m) }}^{1\--2 \mathrm{f}}}}{%
2 \mathrm{f}( \mathrm{f}+1) }$,  if $i\in UC_{( j,l,m)}$,%

\item$ z_{i( j,l,m) }^{\perp }=\dfrac{2z_{i( j,l,m) }+{ S_{\mathbf{z}_{(
i,j,l,m) }}^{1\-- \mathrm{f}}} }{\mathrm{f}+1}-\dfrac{2{ S_{\mathbf{z}_{(
j,l,m) }}^{1\-- \mathrm{f}}} +( \mathrm{f}-1) { S_{\mathbf{z}_{(
j,l,m) }}^{1\--2 \mathrm{f}}} }{2 \mathrm{f}( \mathrm{f}+1) }$, if  $i\leq \mathrm{f}$, $i\notin UC _{( j,l,m) }$,%

\item$ z_{i( j,l,m) }^{\perp }=\dfrac{( \mathrm{f}+1-2x_{jl}x_{jm}x_{lm}) z_{i( j,l,m) }-1}{\mathrm{f}+1}+%
\dfrac{2{ S_{\mathbf{z}_{( j,l,m) }}^{1\-- \mathrm{f}}}-{(f+1) S_{\mathbf{z}_{( j,l,m) }}^{1\--2 \mathrm{f}}} }{%
2 \mathrm{f}}$, if $i\in BC_{( j,l,m) }$,%

\item$ z_{i( j,l,m) }^{\perp}=\dfrac{2z_{i( j,l,m) }+{ S_{\mathbf{z}_{(
i-\mathrm{f},j,l,m) }}^{\mathrm{f}+1\-- 2 \mathrm{f}}} }{\mathrm{f}+1}+\dfrac{2{ S_{\mathbf{z}_{(
j,l,m) }}^{1\-- \mathrm{f}}} -( \mathrm{f}+1) { S_{\mathbf{z}_{(
j,l,m) }}^{1\--2 \mathrm{f}}} }{2 \mathrm{f}( \mathrm{f}+1) }$, if $i\geq (f+1)$, $i\notin BC_{(j,l,m)}$.%
\end{description}

\end{document}

列表的替换是什么description?我可以在公式中使用上述项目。

答案1

我建议使用multline*(或者multline如果您想要方程式编号)。我还删除了一些逗号。

\documentclass[a4paper]{article}
\usepackage{amsmath}
\begin{document}

  \begin{multline*}
    z_{i( j,l,m) }^{\perp }=\dfrac{( \mathrm{f}+1+2x_{jl}x_{jm}x_{lm})
      z_{i( j,l,m) }-1}{\mathrm{f}+1} -\\
    \dfrac{2{ S_{\mathbf{z}_{( j,l,m) }}^{1\--
          \mathrm{f}}}+(\mathrm{f}-1) {S_{\mathbf{z}_{( j,l,m) }}^{1\--2
          \mathrm{f}}}}{%
      2 \mathrm{f}( \mathrm{f}+1) } \quad\text{if } i\in UC_{( j,l,m)}%
  \end{multline*}
  \begin{multline*}
     z_{i( j,l,m) }^{\perp }=\dfrac{2z_{i( j,l,m) }+{ S_{\mathbf{z}_{(
            i,j,l,m) }}^{1\-- \mathrm{f}}} }{\mathrm{f}+1}-\\
    \dfrac{2{S_{\mathbf{z}_{( j,l,m) }}^{1\-- \mathrm{f}}} +( \mathrm{f}-1) {
        S_{\mathbf{z}_{( j,l,m) }}^{1\--2 \mathrm{f}}} }{2 \mathrm{f}(
      \mathrm{f}+1) }\quad \text{if } i\leq \mathrm{f},
    i\notin UC _{( j,l,m) }%
  \end{multline*}
  \begin{multline*}
     z_{i( j,l,m) }^{\perp }=\dfrac{( \mathrm{f}+1-2x_{jl}x_{jm}x_{lm})
      z_{i( j,l,m) }-1}{\mathrm{f}+1}+\\
    \dfrac{2{ S_{\mathbf{z}_{( j,l,m) }}^{1\-- \mathrm{f}}}-{(f+1)
        S_{\mathbf{z}_{( j,l,m) }}^{1\--2 \mathrm{f}}} }{%
      2 \mathrm{f}}\quad \text{if } i\in BC_{( j,l,m) }
  \end{multline*}
  \begin{multline*}
     z_{i( j,l,m) }^{\perp}=\dfrac{2z_{i( j,l,m) }+{ S_{\mathbf{z}_{(
            i-\mathrm{f},j,l,m) }}^{\mathrm{f}+1\-- 2 \mathrm{f}}}
    }{\mathrm{f}+1}+\\\dfrac{2{ S_{\mathbf{z}_{( j,l,m) }}^{1\--
          \mathrm{f}}} -( \mathrm{f}+1) { S_{\mathbf{z}_{( j,l,m)
          }}^{1\--2 \mathrm{f}}} }{2 \mathrm{f}( \mathrm{f}+1)
    }\quad \text{if } i\geq (f+1), i\notin BC_{(j,l,m)}%
  \end{multline*}
\end{document}

在此处输入图片描述

相关内容