我想设置标题包的字体大小,我该怎么做,现在我的序言中有这个
\usepackage[skip=2pt]{caption}
答案1
您可以将font
键与以下值之一一起使用scriptsize
:footnotesize
、small
、normalsize
、large
或Large
。举个小例子:
\documentclass{article}
\usepackage[skip=2pt,font=scriptsize]{caption}
\begin{document}
\begin{figure}
\caption{A test caption}
\end{figure}
Some regular text
\end{document}
如果您想要其他尺寸,您可以声明一种新格式并使用 \fontsize,如以下(仅供说明)示例所示:
\documentclass{article}
\usepackage[skip=2pt]{caption}
\DeclareCaptionFormat{myformat}{\fontsize{5}{6}\selectfont#1#2#3}
\captionsetup{format=myformat}
\begin{document}
\begin{figure}
\caption{A test caption}
\end{figure}
Some regular text
\end{document}