我无法控制标题的字体大小

我无法控制标题的字体大小

以下是我的序言

\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\newcommand{\vs}{\vspace{.1in}}
\newcommand{\ds}{\displaystyle}
\newcommand{\figc}[1]{Fig. II.~\ref{#1}}
\renewcommand{\figurename}{Fig. II..}
\renewcommand\thefigure{\arabic{figure}}
\setcounter{figure}{67}
\begin{document}

和我的图插入

\begin{figure}[h]
     \centering
     \includegraphics[height=40mm]{IMAGES/xxx.jpg}
     \caption {\small{ my caption text}}\label{II068}
\end{figure}

尽管如此\small,标题的打印大小与其余文本相同。

答案1

使用\usepackage[font=small]{caption}第 3 行设置字体大小,而不是通过\caption命令进行设置。第 10 页对此进行了详细说明caption包裹

包装手册的截图

相关内容