画像の配置

画像の配置

誰か助けてくれませんか?チュートリアルを作っているのですが、ドキュメントに写真を追加する必要があります

1 行に 3 枚の写真を並べて追加し、次の行には 1 枚または 2 枚の写真を載せられるようにしたいのですが、問題があります。写真を 2 枚載せると、両方とも「2 列」に中央揃えされ、「3 列」が必要になり、3 列目が空白になります。

誰か助けてくれませんか?ありがとう、Georgerr

私のコードは次のとおりです:

\begin{figure}
  \begin{minipage}{0.3\textwidth}
      \centering
      {\includegraphics[width=5cm]
      {../images/Mail_Phone/WindowsPhoneMail/EN/08_NastaveniSync.png}}
      \caption{Caption A}
  \end{minipage}\hfill
  \begin{minipage}{0.3\textwidth}
     {\includegraphics[width=5cm]
     {../images/Mail_Phone/WindowsPhoneMail/EN/09_NastaveniSync2.png}}
     \caption{Caption B}
  \end{minipage}\hfill
  \begin{minipage}{0.3\textwidth}
  \end{minipage}\hfill
\end{figure}

私が欲しいもの

私が持っているもの

答え1

ページ幅を埋めるために、個々の の代わりに、tabularまたは ここでのようにを使用してみます。tabularxminipage

\documentclass{article}
\usepackage{tabularx}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\lipsum[1]
\begin{figure}[htb]
  \begin{tabularx}{\linewidth}{@{}XXX@{}}
    \includegraphics[width=\linewidth]{example-image}
    & \includegraphics[width=\linewidth]{example-image}
    & \includegraphics[width=\linewidth]{example-image}\\[-1.5em]
    \caption{This is an example image}
    &\caption{This is also an exampe image}
    &\caption{And one more}\\
    %% 
    \includegraphics[width=\linewidth]{example-image}
    & \includegraphics[width=\linewidth]{example-image}
    & \\[-1.5em]
    \caption{More picture}
    &\caption{Next empty}
    &\\
    %%
    \includegraphics[width=\linewidth]{example-image}
    & 
    & \includegraphics[width=\linewidth]{example-image}\\[-1.5em]
    \caption{This row has empty in the middle}
    &
    &\caption{This is the last one!}\\
  \end{tabularx}
\end{figure}
\lipsum[2]
\end{document}

ここに画像の説明を入力してください

同じことは を使ってもできますminipage。空のスロットの問題は、空はminipage何も残らないため、そこに何かを入れる必要があることです。私は を使用します\strutが、質問のコメントで提案されているように を使用することもできます~

\begin{figure}[htb]
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{This is an example image}
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{This is also an exampe image}
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{One more}
  \end{minipage}%
  \newline
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{More picture}
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{Next empty}
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \strut
  \end{minipage}%
  \newline
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{This row has empty in the middle}
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \strut
  \end{minipage}\hfill%
  \begin{minipage}[t]{0.3\linewidth}
    \includegraphics[width=\linewidth]{example-image}
    \caption{This is the last one!}
  \end{minipage}
\end{figure}

関連情報