テーブルのリストのフォントサイズを小さくするにはどうすればいいですか?

テーブルのリストのフォントサイズを小さくするにはどうすればいいですか?

テーブルのリストのフォントサイズを小さくする方法に関して問題が発生しました。

\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}

答え1

を使用するとtocloft、プリアンブルに次の 3 行を追加できます。

\usepackage{tocloft}

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

これを使用すると、タイトル、項目、ページのフォントをそれぞれ変更できます。3 つのコマンドを使用した場合の効果は次のとおりです。

ここに画像の説明を入力してください

答え2

エントリを小さくしたいだけの場合は、\smallその前に を付けます (キャプションは変更されません)。

\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
{\small\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}

より高度なフォーマットには、KOMA-script のtocloft-package または-packageがあります。tocbasic

関連情報