跳转至

有底色列表

下面是一个相对好看的列表的示例。

%% 下面的部分放在导言区,注意引入 tcolorbox 相关宏包
\newlist{steps}{enumerate}{1}% create new steps environment
\setlist[steps]{%              configure the steps environment
  label=  \textbf{Step \Roman*},
  leftmargin=*,
  align=left
}
\tcbuselibrary{skins}
\tcolorboxenvironment{steps}{% wrap the steps environment in a tcolorbox
  colframe= black
}

%% 下面的部分是示例
\begin{steps}
    \item Preprocessing of time series
    \item Determination of parameter $d$
    \item Determination of parameter $p, q$
    \item Model fitting
    \item Residual analysis
    \item Prediction
\end{steps}

评论