当使用 latex lstlistoflistings 时,我怎样才能有章节和小节

当使用 latex lstlistoflistings 时,我怎样才能有章节和小节

目前我的一个 latex 模板文件使用 Listing Package 然后

\begin{document}

\listoffigures

\lstlistoflistings

[%- FOREACH item = items -%]

   [%- IF item.type == 'business' -%]
% [% item.path %]
\begin{figure}[H]

   \includegraphics[figure]

   \caption{[%- item.caption -%]}

\end{figure}
\clearpage

   [%- ELSIF item.type == 'IT' -%]
\lstinputlisting[caption=[%- item.caption -%]]

.......

当前显示普通目录

list of figures
1 
2
3
4
5
listings
1
2
3
4 .....

我想要的目录格式

Ta
list of figure
1
    1.1
    1.2 
....
2
    2.1
    2.2
    2.3
.....
Listings
1
2
3
4

有人可以告诉我该怎么做吗?

相关内容