我希望我的数字和表格的标题与\ footnotesize的大小相同。在我的文档的序言中是否有东西要做到这一点?
答案 0 :(得分:13)
使用caption
package将font
键值设置为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}
还可以分别为figure
和table
调整标签和文字格式。但是,一致性是更好的选择。