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

时间:2014-12-01 23:01:27

标签: latex

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

1 个答案:

答案 0 :(得分:13)

使用caption packagefont键值设置为footnotesize

enter image description here

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

还可以分别为figuretable调整标签和文字格式。但是,一致性是更好的选择。