I have a document like this:
\documentclass[oneside]{book} \usepackage{titletoc} \titlecontents{chapter} [0pt] {} {\makebox[10em][r]{\thecontentslabel}\hspace{1em}\bfseries} {\makebox[10em][r]{\thecontentslabel}\hspace{1em}\bfseries} {\titlerule*[1em]{.}\thecontentspage} [] \begin{document} \frontmatter \tableofcontents \mainmatter{} \chapter{Alpha} \chapter{Beta} \chapter{Gamma} \end{document} It generates a table of contents like this:
How do I increase the vertical spacing between these TOC entries?


\titlecontents{chapter}command to adjust teh spacing in the table of contents. You could use commands like\medskip,\bigskip,... or\addvspace{<length>}with a length of your choice.