如何创建一个 3*3 的图像表,并在图像之间留出一些空白?我需要哪些软件包?
我正在使用 overleaf.com 作为平台。
3*3 的图片表是否适合组织会议论文?或者我还能如何组织 9 张图片?我应该使用图形吗?
更新:您能看一下并告诉我为什么我的所有图像都显示为黑色吗?
\begin{figure*}[ht!]
\subfloat[fig. 1 \label{fig:PKR}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/1_144.jpg}}
\hspace{\fill}
\subfloat[fig. 2 \label{fig:PKT} ]{%
\includegraphics[ width=0.31\textwidth]{frame_images/2_252.jpg}}
\hspace{\fill}
\subfloat[fig. 3 \label{fig:tie5}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/3_10541.jpg}}\\
\subfloat[fig. 4 \label{fig:PKR}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/4_90131.jpg}}
\hspace{\fill}
\subfloat[fig. 5 \label{fig:PKT} ]{%
\includegraphics[ width=0.31\textwidth]{frame_images/5_141.jpg}}
\hspace{\fill}
\subfloat[fig. 6 \label{fig:tie5}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/6_110297.jpg}}\\
\subfloat[fig. 7 \label{fig:PKR}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/7_10092.jpg}}
\hspace{\fill}
\subfloat[fig. 8 \label{fig:PKT} ]{%
\includegraphics[ width=0.31\textwidth]{frame_images/8_10136.jpg}}
\hspace{\fill}
\subfloat[fig. 9 \label{fig:tie5}]{%
\includegraphics[ width=0.31\textwidth]{frame_images/9_10287.jpg}}\\
\caption{Examples}
\label{workflow}
\end{figure*}
以下是我所看到的:
答案1
看看,如果以下就是你想要的:
\documentclass{article}
\usepackage{tabularx}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htb]
\setkeys{Gin}{width=\linewidth}
\setlength\tabcolsep{2pt}
\begin{tabularx}{\textwidth}{XXX}
\includegraphics{example-image-a} &
\includegraphics{example-image-b} &
\includegraphics{example-image-c} \\
\includegraphics{example-image-a} &
\includegraphics{example-image-b} &
\includegraphics{example-image-c} \\
\includegraphics{example-image-a} &
\includegraphics{example-image-b} &
\includegraphics{example-image-c}
\end{tabularx}
\caption{Set graphics options by keys "Gin"}
\end{figure}
\end{document}
注意:从您的问题和评论中尚不清楚,您的问题是什么。希望这个答案能帮助您澄清您的问题。