我希望图形和表格的标题具有与\footnotesize相同的大小。是否可以在文件的序言部分加上一些字词来做到这一点?

最佳答案

使用 caption packagefont键值设置为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}

也可以分别为figuretable分别调整标签和文本格式。但是,在这里一致性是一个更好的选择。

关于latex - 如何缩小所有图中字幕的大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27238963/

10-12 20:07