如何减少所有数字中的字幕大小

Lui*_*ros 8 latex

我希望我的数字和表格的标题与\ footnotesize的大小相同.在我的文档的序言中有什么东西要做到这一点吗?

Wer*_*ner 17

使用该captionfont键值设置为footnotesize:

在此输入图像描述

\documentclass{article}
\usepackage{caption}
\captionsetup{font=footnotesize}
\begin{document}

Some regular text set in \verb|\normalsize|.
\begin{table}[t]
  \caption{A table using \texttt{\string\footnotesize}.}
\end{table}
\begin{figure}[t]
  \caption{A figure using \texttt{\string\footnotesize}.}
\end{figure}

\end{document}
Run Code Online (Sandbox Code Playgroud)

也可以单独为figures和tables单独调整标签和文本格式.但是,一致性是更好的选择.