双列 Revtex-4 图形标题位于图形上方

双列 Revtex-4 图形标题位于图形上方

图形标题应位于图形下方(与表格标题不同)。但在 Revtex4-1 中,标题位于图形上方。如何修复此问题以使其出现在图形下方?我正在尝试解决这个问题,应该有一个解决方案。

答案1

其实这个问题的解决方案很简单:只要记住把\caption 以下代码\includegraphics{}!哈哈

以下代码产生了标题位于图形上方的“错误”(应该避免)

\begin{figure}[t]
\centering
\caption{This caption is above the figure (please avoid this!)}
\includegraphics[width=.8\textwidth]{Figure}\label{Fig: Fig1}
\end{figure}

而下面的代码产生的是“正确”的东西,即在图下方有标题:

\begin{figure}[t]
\centering
\includegraphics[width=.8\textwidth]{Figure}\label{Fig: Fig1}
\caption{This caption is below the figure}
\end{figure}

相关内容