图表和表格标题的字体大小

图表和表格标题的字体大小

我需要图形和表格标题的字体大小为 8pt,我该如何实现?

答案1

如果您正在使用标准类之一(bookreportarticle)或与caption包,然后您可以使用声明您的默认字体规范\DeclareCaptionFont,然后在其中使用这个新的声明\captionsetup

\documentclass{article}
\usepackage{caption}

\DeclareCaptionFont{mysize}{\fontsize{8}{9.6}\selectfont}
\captionsetup{font=mysize}

\begin{document}

\begin{figure}
\centering
A
\caption{The caption of the figure will be typeset using \texttt{8pt} font size}
\end{figure}
Regular text.

\end{document}

结果:

在此处输入图片描述

相关内容