This following question relates to the one posted here: On the Display of Long Font Size-Adjusted Subsection TOC Entries
Consider the following code which adjusts the font size of the TOC subsection entries:
\documentclass[12pt,openany]{book} \usepackage[paperwidth=4in,paperheight=6in]{geometry} \usepackage[sfdefault]{cabin} \usepackage{tocloft} \renewcommand{\cftsubsecfont}{\hskip 10pt\tiny\par} \renewcommand\cftsubsecafterpnum{\tiny\par} \begin{document} \tableofcontents \addcontentsline{toc}{subsection}{This is a very long subsection entry in the Table of Contents that will be split over multiple lines in the TOC; however, I would like to avoid the large vertical gap between the last two lines.} \end{document} which produces:
QUESTION: How may the above code be modified in order to eliminate the large gap between the last two lines in the TOC subsection entry?
Thank you.



\renewcommand\cftsubsecpagefont{\tiny}a try? Put differently, since you're using\tinyas the font size for\cftsubsecfont, why not also for\cftsubsecpagefont?