具有“固定”大小的迷你页面在添加内容时会完全破坏对齐

具有“固定”大小的迷你页面在添加内容时会完全破坏对齐

下面的例子贯穿了pdflatex,用一个fbox简单地包围每个小页面的 来说明,为了清楚起见,我省略了它:

\begin{figure}[t]
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    \subcaption{A}
  \end{minipage}
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    \subcaption{B}
  \end{minipage}
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    \subcaption{C}
  \end{minipage}
  \caption{My figures}
\end{figure}

生成一个相当漂亮的并排迷你页面集合,例如:

在此处输入图片描述

但是,当我向这些小页面添加一些内容时,例如:

\begin{figure}[t]
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    \subcaption{A}
  \end{minipage}
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    Text, or a graph, or a table, or whatever goes here
    \subcaption{B}
  \end{minipage}
  \begin{minipage}[t][0.15\textheight][t]{0.28\textwidth}
    % define the graphic in a way that ensures it does not exceed the minipage boundary
    \includegraphics[width=0.8\textwidth]{my-graph.pdf}
    \subcaption{C}
  \end{minipage}
  \caption{My figures}
\end{figure}

一切都不再那么美好,结果是:

在此处输入图片描述

为什么会发生这种情况?我认为固定大小的迷你页面的内容与其他固定大小的迷你页面的内容完全无关,但事实并非如此?我怎样才能让它表现得合理,并保持迷你页面按照我定义的固定大小?谢谢您的帮助!

相关内容