align 環境の周囲の `muskip` を変更すると `Incompatible glue unit` エラーが発生する

align 環境の周囲の `muskip` を変更すると `Incompatible glue unit` エラーが発生する

長い方程式を 1 行に収めようとしています。

\documentclass[a4paper,11pt,oneside]{article}

%%% DOCUMENT SETUP %%%
\PassOptionsToPackage{medium}{titlesec}

% packages and configurations come here (see list below).
\graphicspath{{images/}}

\title{My title}
\author{Myself}

\date{\today{}}

\begin{document}
\maketitle

\newcommand{\indicator}[1]{\mathbbm{1}_{\{#1\}}}
\newcommand{\sgn}{\mathrm{sgn}}

\begin{align}
    \Lambda=
    \frac{1}{x}\left(
        \indicator{z\geq0}
        -e^{-xt}\Phi\left(\beta_0\right)
        +\frac{e^{-zy}}{2}\left(
            e^{-zp}\left(\frac{y}{p}-1\right)\Phi\left(\sgn(z)\beta_1\right)
            -e^{zp}\left(\frac{y}{p}+1\right)\Phi\left(-\sgn(z)\beta_2\right)
        \right)
    \right)
\end{align}
\end{document}

に基づくこの答え\thinmuskipとの値を変更して方程式を簡潔にしようとしました\medmuskip

\begingroup
\setlength{\thinmuskip}{0mu}
\setlength{\medmuskip}{0mu}
\begin{align}
    \Lambda=
    \frac{1}{x}\left(
        \indicator{z\geq0}
        -e^{-xt}\Phi\left(\beta_0\right)
        +\frac{e^{-zy}}{2}\left(
            e^{-zp}\left(\frac{y}{p}-1\right)\Phi\left(\sgn(z)\beta_1\right)
            -e^{zp}\left(\frac{y}{p}+1\right)\Phi\left(-\sgn(z)\beta_2\right)
        \right)
    \right)
\end{align}
\endgroup

しかし、次のエラーが発生します。

! Incompatible glue units.               \setlength{\thinmuskip}{0mu}
! Illegal unit of measure (pt inserted). \setlength{\medmuskip}{0mu}

さらに、文字列はu!グループが始まる場所に出力に表示されます。

このサイトには、この種のエラーに関する他の質問があります。これだが、それは目下の課題とは無関係のようだ。

ここでコードが失敗する原因は何ですか?

編集: ドキュメントのパッケージ/設定

\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage{bbm}
\usepackage{bm}

\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\usepackage[colorlinks=true,allcolors=blue]{hyperref}
\usepackage[authoryear]{natbib}
\usepackage{titlesec}
\usepackage[dvipsnames]{xcolor}
\usepackage[normalem]{ulem}
\usepackage{soul}
\usepackage{color}
\usepackage{booktabs}
\usepackage[textsize=footnotesize,tickmarkheight=3pt]{todonotes}
\usepackage{setspace}

% MATHS %
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{bigints}
\usepackage{mathrsfs}
\usepackage{xfrac}
\usepackage{yfonts}
\usepackage{mathtools}
\usepackage{upgreek}
\usepackage{nccmath}
\usepackage{scalerel}
\usepackage{accents}
\usepackage{nicefrac}
\usepackage{mathtools}

\usepackage{subcaption}
\usepackage[labelfont=bf]{caption}

\usepackage{changepage}
\usepackage{enumitem}
\usepackage{eurosym}
\usepackage{indentfirst}
\usepackage{bibentry}
\usepackage{pifont}

\setlength\parindent{0pt}

\bibliographystyle{myauthordate3}
\setcitestyle{authoryear,round,semicolon,}

\titleformat{\paragraph}[hang]
{\normalfont\normalsize\bfseries}{}{1em}{}
\titlespacing*{\paragraph}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\titleformat{\subparagraph}
{\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{}
\titlespacing*{\subparagraph}{\parindent}{3.25ex plus 1ex minus .2ex}{.75ex plus .1ex}

\makeatletter
\def\today{%
    \two@digits{\the\day}-%
    \ifcase\month\or%
    Jan\or Feb\or Mar\or Apr\or May\or Jun\or%
    Jul\or Aug\or Sep\or Oct\or Nov\or Dec\fi-%
    \number\year%
}
\makeatother

\newcommand{\indicator}[1]{\mathbbm{1}_{\{#1\}}}
\newcommand{\sgn}{\mathrm{sgn}}

\makeatletter
\newcommand{\vast}{\bBigg@{4}}
\newcommand{\Vast}{\bBigg@{5}}
\makeatother

答え1

パッケージscalerelは をロードしますcalc。後者のパッケージが呼び出されると、 で muskips を設定することはできません\setlength

ただやるだけ

\thinmuskip=0mu
\medmuskip=0mu

の代わりに\setlength

答え2

デフォルトの間隔については、多くの考慮が払われています。それを変更する代わりに、方程式を 2 つに分割します。

\documentclass[a4paper,11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath}
\usepackage{bbm}
\newcommand{\indicator}[1]{\mathbbm{1}_{\{#1\}}}
\DeclareMathOperator{\sgn}{sgn}
\begin{document}
\begin{multline}
    \Lambda=
    \frac{1}{x}\biggl(
        \indicator{z\geq0}
        -e^{-xt}\Phi(\beta_0)\\
        +\frac{e^{-zy}}{2}\Bigl(
            e^{-zp}\Bigl(\frac{y}{p}-1\Bigr)\Phi(\sgn(z)\beta_1)
            -e^{zp}\Bigl(\frac{y}{p}+1\Bigr)\Phi(-\sgn(z)\beta_2)
        \Bigr)
    \biggr)
\end{multline}
\end{document}

これは次のように表示されます。 コード出力

\leftこの場合、 と は最適ではないため、これらも変更しました\right(現時点では適切な Q&A が見つかりません)。

最小限の例についての追記:例をコンパイルするには、 と のみが必要です。使用可能なテキスト領域のサイズを決定するには、ドキュメント クラス オプションと のみが必要ですamsmath。その他のすべては、例を (1) 理解しにくくし、(2) 単一のコード ブロックとしてコンパイルできないものにします。bbmgeometry

関連情報