我怎样才能将算法包与回忆录类一起使用

我怎样才能将算法包与回忆录类一起使用

目前没有编译问题。但是,\listofalgorithms不起作用。

此外,我的算法缺少标题。这对我来说是最重要的。当我使用带有的算法时,如何才能显示算法标题memoir

答案1

请提供一个最小示例。此示例运行良好。

\documentclass[a4paper]{memoir}
\usepackage{algorithm,algorithmicx}
\begin{document}
\listofalgorithms
\begin{algorithm}
  asdfasdf
  \caption{test}
\end{algorithm}
\end{document}

相关内容