问题:
因为有两个图(都是跨栏),都需要放在一页的top,但第一个图在top之后,第二张图就直接被挤到了新的一页。
解决办法:
首先添加包:\usepackage{stfloats}
然后执行下面这个:
\begin{figure*}[ht]
\centering
\includegraphics[width=1.1\textwidth]{Fig/grid.png}
\caption{The neural network structure of the proposed JSCC scheme.}
\label{grid}
\end{figure*}
\begin{figure*}[ht]
所有评论(0)