使用带有(子)标题包的小字体

使用带有(子)标题包的小字体

在某些情况下(例如beamer),可能需要使用tiny(sub)caption 包作为字体大小。如何使用它?

答案1

虽然tiny默认情况下此选项不可用,但可以使用以下方法轻松添加\DeclareCaptionFont{tiny}{\tiny}

\documentclass{article} 
\usepackage{graphicx}

\usepackage{subcaption} 
\DeclareCaptionFont{tiny}{\tiny} 
\captionsetup{font+=tiny} 
\captionsetup[sub]{font+=tiny} 

\begin{document} 
    \begin{figure}
        \centering  
        \subcaptionbox{Original}{\includegraphics[scale=0.15]{example-image}}
        \subcaptionbox{New}{\includegraphics[scale=0.15]{example-image}}
        \caption{Image}
    \end{figure}  
\end{document}

2018 年 5 月编辑:

此解决方法不再需要,它已在 caption 包中通过提交修复https://github.com/axelsommerfeldt/caption/commit/8088ac29f196076ab4b9a942f96d557a36cdec47

相关内容