beamer 子浮点数对齐

beamer 子浮点数对齐

我希望字母与图像完全对齐(稍微靠右一点)。这是我的代码

\begin{figure}
        \subfloat[\label{fig1}]{
            \includegraphics[scale=0.74]{varnode.pdf}}\qquad \qquad 
        \subfloat[\label{fig2}]{
            \includegraphics[scale=0.74]{checknode.pdf}}
\end{figure}

结果如下

图像

答案1

您在图像放置过程中插入了虚假空格:

在此处输入图片描述

\documentclass{beamer}

\usepackage{subfig}

\begin{document}

\begin{frame}

\begin{figure}
  \subfloat[\label{fig1}]{
    \includegraphics[scale=0.2]{example-image-a}}\qquad \qquad 
  \subfloat[\label{fig2}]{%
    \includegraphics[scale=0.2]{example-image-b}}
\end{figure}

\end{frame}

\end{document}

请注意 (a) 的位置未对齐,而 (b) 则完全居中。这是因为%\subfloat。如果没有它,实际上会设置一个额外的空格图像,将其稍微向右推(即,将标题稍微向左推)。

有关此主题的更多信息,请参阅%行末百分号 ( ) 有什么用?

相关内容