我想按照以下方式写一个等式,但似乎有一些错误

我想按照以下方式写一个等式,但似乎有一些错误

在此处输入图片描述

代码:

\begin{equation}
X_{n+1} = [aX_{n} + c] \quad \textrm{mod m} 
\end{equation}
\begin{center}
    \textrm{m, the Modulus (m > 0),} \\
    \textrm{a, the Multiplier (0 < a $\leq$ m),} \\
    \textrm{c, the increment (0 $\leq$ c < m),} \\
    \textrm{X_n}\textrm{, the starting value} \\
\end{center}

答案1

这是一种实现此目的的方法,使用嵌套在align环境中的表格:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{align}
 & X_{n+1} = [aX_{n} + c] \mod m \\[0.5ex]
 &\rlap{\upshape \begin{tabular}{@{}l}
   $ m $, the Modulus ($ m > 0 $), \\
    $a$, the Multiplier ($ 0 < a \leq m $), \\
   $c$, the increment ($ 0 \leq c < m $), \\
   $X_n$, the starting value
\end{tabular}}\notag
\end{align}

\end{document} 

在此处输入图片描述

相关内容