使用 tocbasic 将多个列表扩展到四个列表之外

使用 tocbasic 将多个列表扩展到四个列表之外

我正在使用tocbasic下的包report,并已成功扩展列表以包含两个新列表,但是,我需要第三个新列表。我已\DeclareNewTOC成功输入并获取新项目,并可以成功引用它,\autoref但我没有获得第五个列表,并且表格列表发生了不稳定的变化,更改为我想要的列表标题,但项目仍然是表格。具体来说:

\documentclass{report}
\usepackage[nottoc]{tocbibind}
\usepackage{tocbasic}
.
.
.
\DeclareTOCStyleEntries{tocline}{figure,table}
DeclareNewTOC[%
type=map
.
.
%this works fine

\DeclareNewToc[%
type=graph
.
.
%this works fine
DeclareNewToc[%
type=flow,
float,
name=Flow Diagrams},
counterwithin=chapter,
setup=totoc,   %this does not work
tocentryindent:=figure
tocentryunumwidth:=figure
]{lofn}

\begin{document}

\begin{flow}
\include....
\label{flow}
\end{flow}
\end{document}

这在文本中运行良好,具有正确的文本参考标识,\autoref但没有出现列表。

我该如何解决这个问题?如有拼写错误,请谅解。谢谢。

相关内容