我正在使用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
但没有出现列表。
我该如何解决这个问题?如有拼写错误,请谅解。谢谢。