I wonder if it's possible to customize the settings of the
\cftchapterprecistoc
command by the tocloft package. What I get by default is an not indented italicized text flushed to the left, while what I want is an indented justified text. The manual, unfortunately, doesn't say anything about that.Here's the minimal example.
Code: Select all
\documentclass{book}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\chapter{Introduction}
\cftchapterprecistoc{This is an introduction}
\chapter{Conclusion}
\cftchapterprecistoc{This is a conclusion}
\end{document}