
패키지 의 경우 todonotes
할 일 목록 안에 장 헤더를 삽입하여 해당 장 아래에 그룹화하는 방법을 알고 싶습니다.
\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[hidelinks,colorlinks=false]{hyperref}
\usepackage{todonotes,lipsum}
\begin{document}
\listoftodos
\chapter{1st Chapter}
\lipsum[1]
\todo[inline]{1st todo}
\chapter{2nd Chapter}
\lipsum[2]
\todo[inline]{2nd todo}
\end{document}