我正在尝试使用 显示一组图片subfigure
。第一行看起来没问题,但第二行与第一行的对齐方式不同,尽管这两条线完全相同。我该如何修复它?
代码:
\begin{figure*}
\centering
\begin{subfigure}
\centering
\includegraphics[width=\imagewidth,height=\imageheigth]{image1}
\end{subfigure}
~
\begin{subfigure}
\centering
\includegraphics[width=\imagewidth,height=\imageheigth]{image2}
\end{subfigure}
..............
..............
~
\begin{subfigure}
\centering
\includegraphics[width=\imagewidth,height=\imageheigth]{imageN}
\end{subfigure} \\
~
\begin{subfigure}
\centering
\includegraphics[width=\imagewidth,height=\imageheigth]{image(N+1)}
\end{subfigure}
..............
..............
~
\begin{subfigure}
\centering
\includegraphics[width=\imagewidth,height=\imageheigth]{image(2N)}
\end{subfigure}
\caption{some stuff her}
\label{fig:stuff}
\end{figure*}
答案1
好的,我终于解决了。原因是放错了~
。感谢您的支持。