我正在使用带有 twocolumn 的 revtex。我有一个宽图形,我将其放在环境中widetext
以允许它跨越两列。图形本身看起来不错,但标题似乎卡在其中一列中,而不是跟随图形的其余部分并跨越整个页面的宽度。
我怎样才能使图形上的标题在 revtex 中以两列跨越整个页面的宽度?
答案1
我建议您不要使用widetext
,而是figure*
使用;请注意,现在图形(及其标题)将跨越两列,但图像将出现在以下页面的顶部:
\documentclass[twocolumn]{revtex4-1}
\usepackage{graphicx}
\usepackage{lipsum}% just to generate text for the example
\begin{document}
\lipsum[1-8]
\begin{figure*}
\includegraphics{example-image-a}
\caption{some text for the caption of the example figure; it will span at least two lines just for the example; here we add some more text just to make the caption longer}
\end{figure*}
\lipsum[1-3]
\end{document}