如何更改字幕的字体大小

时间:2019-10-15 08:42:35

标签: latex beamer

我想添加一个字幕,该字幕必须非常小(脚注大小)并与图像对齐。我使用了以下软件包:

\usepackage{caption}
\usepackage[font=footnotesize]{caption}
\captionsetup{font=footnotesize}

,但字体大小不变。 用于图像和标题的lateX代码部分如下:

\begin{frame}
\frametitle{Model}
\begin{figure}[l]
    \centering
    \includegraphics[width=0.7\textwidth]{dynamics}
    \caption{Bla Bla Bla...Bla Bla Bla Bla}
    \label{fig:dynamics}
\end{figure}

\end{frame}

,图像大小如下:enter image description here

关于我如何更改字体大小的任何建议?

谢谢

1 个答案:

答案 0 :(得分:0)

您不需要caption包来调整Beamer中的标题字体大小-Beamer有其自己的机制:

\documentclass{beamer}

\setbeamerfont{caption}{size=\Tiny}

\begin{document}

\begin{frame}
\frametitle{Model}
\begin{figure}
%    \centering
    \includegraphics[width=0.7\textwidth]{example-image-duck}
    \caption{Bla Bla Bla...Bla Bla Bla Bla}
    \label{fig:dynamics}
\end{figure}

\end{frame}

\end{document}

与问题无关,但是

  • 在没有浮动机制的文档类中,没有必要在图形中添加浮动说明符,并且[l]仍然是无效的说明符

  • 您不需要\centering,默认情况下,投影仪将人物居中

enter image description here