ondes / Template-Latex-ITU-Thesis

LaTeX Template of Istanbul Technical University thesis projects
59 stars 21 forks source link

List of Table / List of Figure Spacing Issue #20

Closed dcsim closed 2 years ago

dcsim commented 2 years ago

On page xvii of thesis.pdf there is a spacing issue beginning with the first caption spanning multiple lines (Table 2.3).

Screenshot_20211223_223839

Appending % to the end of every line ending in { or } within \renewcommand\listoftables{% and \renewcommand\listoffigures{% solves the issue.

 %===== LOT PAGE SETTINGS ===== - SBÖ
 \renewcommand\listoftables{%
     %\vspace*{\ChapterUstenBosluk}                 % This is not effective - SBÖ   
     {\chapter*{\listtablename}%
     \vspace*{-18pt}%
     \renewcommand{\ULdepth}{4pt}%              % Added using ulem package for \uline command - SBÖ
     \renewcommand{\ULthickness}{1.5pt}%            % Added for underline tickness change which was 0.4pt - SBÖ
     \if@Ingilizce\hfill\vspace*{0truecm}{\bf\uline{Page}}~\else~\hfill\vspace*{0truecm}{\bf\uline{Sayfa}}\fi}\\ %

     \let\orig@numberline\numberline   
     \@mkboth{\MakeUppercase\listtablename}{\MakeUppercase\listtablename}%
     \renewcommand*{\numberline}[1]{%
     \orig@numberline{\bf\tablename\ ##1}\hspace{-8pt}{\bf:}\hspace{4pt}}%  Better spacing - SBÖ
     \addcontentsline{toc}{part}{\bf{\protect\listtablenameToC}}%
     \setlength{\th@oldparskip}{\parskip}%
     \setlength{\parskip}{\LoTparskip}%
     \@starttoc{lot}%
     \setlength{\parskip}{\th@oldparskip}%
     \let\numberline\orig@numberline
     }

Screenshot_20211223_223900

ooaj commented 2 years ago

Ah. TeX turns end of line into a space. Will merge the request soon. Thanks.