如何在投影机中将字幕置于中间

如何在投影机中将字幕置于中间

centering当我想要在 中的标题时出现问题beamer。我发现该caption包在 中无用beamer

这是我的平均能量损失

\documentclass{beamer}

\usepackage[font=scriptsize,justification=centering]{caption}
\usepackage{mwe}

\begin{document}
\begin{frame}
\begin{figure}
\centering
\begin{minipage}{.4\textwidth}
  \centering
  \includegraphics[width=\textwidth]{example-image-a}
  \caption{My caption here but I can't center the last line of caption}
\end{minipage}%
\hfill
\begin{minipage}{.4\textwidth}
  \includegraphics[width=\textwidth]{example-image-b}
  \caption{My other caption here}
\end{minipage}
\end{figure}
\end{frame}
\end{document}

这是我的结果:

在此处输入图片描述

那么,我该如何解决这个问题?

答案1

添加caption包选项justification=centering\usepackage[font=scriptsize,justification=centering]{caption}

这应该使所有线条居中。

答案2

同时删除标题前的“图片”并使其对齐:

\usepackage{ragged2e}    
\setbeamertemplate{caption}{\raggedright\centering\insertcaption\par}

相关内容