如何使表格列表的字体大小变小?

如何使表格列表的字体大小变小?

我遇到了一个问题,如何使表格列表的字体大小变小?

\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,您可以将以下三行添加到序言中:

\usepackage{tocloft}

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

您可以使用它们分别更改标题、项目和页面的字体。以下是使用这三个命令的效果:

在此处输入图片描述

答案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}

对于更高级的格式化,有tocloft-package 或tocbasicKOMA-script 的-package。

相关内容