[Tex/LaTex] How to make the fontsize of list of table smaller

lists

I have met a problem about how to make the fontsize of list of table smaller?

\documentclass[12pt,a4paper]{article}
\usepackage{microtype}
\usepackage{sectsty}
\allsectionsfont{\centering}
\usepackage{indentfirst,amsmath,multicol,amssymb,booktabs}
\usepackage{setspace} 
\usepackage{bm}
\usepackage{geometry}
\usepackage[sort]{natbib}
\setlength{\bibsep}{2pt}
\geometry{top=1.4in,bottom=1.in,left=1in,right=1in}
\usepackage{grffile}
\usepackage{epstopdf}
\usepackage[svgnames]{xcolor}
\usepackage[colorlinks,linkcolor=blue,citecolor=blue]{hyperref} 
\onehalfspacing

\begin{document}
\tableofcontents
\newpage
\listoftables
\listoffigures
\newpage

\section{Tables}
\begin{table}[htp]
    \centering 
    \small{\caption{Cal}}
        \begin{tabular}{llll} 
            \toprule
            Par& Desc & Va & \\ 
            \midrule
            \bottomrule
        \end{tabular}
\end{table}
\end{document}

Best Answer

Using tocloft, you can add to the preamble the following three lines:

\usepackage{tocloft}

\renewcommand\cftlottitlefont{\large\bfseries}
\renewcommand\cfttabfont{\small}
\renewcommand\cfttabpagefont{\small}

with which you can change the fonts for title, items, and page, respectively. Here is the effect of using the three commands:

enter image description here

Related Question