【发布时间】:2014-10-29 09:15:51
【问题描述】:
这是我正在使用的包:
\documentclass[twocolumn,showpacs,preprintnumbers,amsmath,amssymb,superscriptaddress]{revtex4}
\usepackage{graphicx}
\usepackage{bm}
\usepackage{subcaption}
\usepackage{SIunits}
\captionsetup{justification=raggedright, singlelinecheck=false}
\bibliographystyle{approve}
为了将两个图形并排放置,即使使用 twocolumn 选项,也要使用页面的全宽,我使用以下语法:
\begin{figure*}
\centering
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{mfploglog_A.eps}
\end{subfigure}%
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{mfploglog.eps}
\end{subfigure}
\caption{XXX}\protect\label{Eloglog}
\end{figure*}
问题是使用这个编号是不正确的。对于每个图形,都会跳过一个数字,就好像子图形环境将其计为一个图形一样。例如,如果我在代码中只输入这个数字,它将被标记为数字 2。
有人遇到过这种问题吗?
【问题讨论】: