确保 tufte-book 中的图表列表和算法列表之间的风格统一

确保 tufte-book 中的图表列表和算法列表之间的风格统一

在 TeXShop 的 tufte-book 中,我使用

\usepackage[ ]{algorithm2e}

并在书中用代码进行调用,例如:

\color{blue}
\framebox[\textwidth][l]{
\color{black}
\begin{algorithm}[H] \label{alg:scanning}
 \KwData{this text}
 \KwResult{how to write algorithm with \LaTeX2e }
 initialization\;
 \While{not at end of this document}{
  read current\;
  \eIf{understand}{
   go to next section\;
   current section becomes this one\;
   }{
   go back to the beginning of current section\;
  }
 }
 \caption{Scanning}
\end{algorithm}
}
\color{black}

然后我创建一个算法列表使用

\listofalgorithms

并获得排版输出,例如:

算法列表

注意样式:虚线与右对齐的页码。

相反,我希望其风格与自动和类似创建的图片列表(无虚线;无右对齐页码):

图片列表

我怎么做?

相关内容