I would like to split \lstlistoflistings into two lists (one in the main contents of the document, one in the appendices).
Titletoc only works for figures / tables : is there a workaround for that ?
My structure currently looks like this (if I excluded the figures / tables split lists) :
Code: Select all
\documentclass{report}
\usepackage{listings}
\usepackage[toc,page]{appendix}
\usepackage{titletoc}
% Start partial lists
\startlist[main]{lol}% starts main list of listings
% ... Some contents + printlist somewhere here
% Stop partial lists
\stoplist[main]{lol}% stops main list of listings
% Start partial lists
\startlist[appendices]{lol}% starts appendices list of listings
\begin{appendices}
% ... some listings here + printlist somewhere here
\end{appendices}
% Stop partial lists
\stoplist[appendices]{lol}% stops appendices list of listings