我需要图形和表格标题的字体大小为 8pt,我该如何实现?
答案1
如果您正在使用标准类之一(book
,report
,article
)或与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}
结果: