6 张填满页面的图片

6 张填满页面的图片

因此,我使用下面的代码在一页上制作 6 个图形:

\begin{figure}[ht]  
 \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/EXAbs}
  \end{minipage}
  \hfill
  \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/HXAbs}
  \end{minipage}
\end{figure}
\begin{figure}[ht]  
 \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/EYAbs}
  \end{minipage}
  \hfill
  \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/HYAbs}
  \end{minipage}
\end{figure}    
\begin{figure}[ht]  
 \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/EZAbs}
  \end{minipage}
  \hfill
  \begin{minipage}{0.4\textwidth}
   \includegraphics[width=\textwidth]{Bilder/Normal/HZAbs}
  \end{minipage}
 \caption{Vergleich zwischen Momentenmethode und Dipolapproximation der Amplituden des elektrischen und magnetischen Feldes aufgeschlüsselt nach ihren Komponenten}
\end{figure}    

问题是它在页面底部留下了一个巨大的空白。

底部的巨大空间

但是当我将图形放大时{0.5\textwidth}。只有 4 个图形保留在一页上。尽管剩余大量空间,但其他两个图形被推到下一页。我想将它们放大或至少使整个图形居中。

答案1

将所有图像包含在一个

\begin{figure}[p]...\end{figure}

这将确保图像位于单独的页面上。您无需将图像放在小页面中,只需指定它们的宽度并使用 提供它们之间的空间即可\hspace{1cm}。您可以在每行之间添加垂直空间\vspace{3cm}

示例输出

\documentclass{article}

\usepackage{graphicx}

\begin{document}
\begin{figure}[p]
  \centering
  \includegraphics[width=.4\textwidth]{example-image-a}
  \hspace{1cm}
  \includegraphics[width=.4\textwidth]{example-image-b}

  \vspace{3cm}

  \includegraphics[width=.4\textwidth]{example-image-a}
  \hspace{1cm}
  \includegraphics[width=.4\textwidth]{example-image-b}

  \vspace{3cm}

  \includegraphics[width=.4\textwidth]{example-image-a}
  \hspace{1cm}
  \includegraphics[width=.4\textwidth]{example-image-b}

  \caption{Full page collection of figures}
\end{figure}
\end{document}

相关内容