LaTex 中的图形排列错误(位置错误)

LaTex 中的图形排列错误(位置错误)

我想构建像第一张照片那样的 LaTex,但我让它变成了第二张。

将代码与第一个图表拟合的方法是什么?谢谢您的帮助。

在此处输入图片描述 在此处输入图片描述

\documentclass[12pt]{article}  
\usepackage{graphicx} 
\renewcommand\arraystretch{1}
\begin{document}  
\begin{figure}  

\includegraphics[width=0.1\textwidth]{example-image-golden} &
\includegraphics[width=0.1\textwidth]{example-image-golden} &
\includegraphics[width=0.1\textwidth]{example-image-golden} &
\includegraphics[width=0.1\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} &
\includegraphics[width=0.2\textwidth]{example-image-golden} 

\end{figure}
\end{document}  

答案1

目前还不清楚你到底想要什么,但也许是这样的

\documentclass[12pt]{article}
\usepackage{graphicx}
\renewcommand\arraystretch{1}
\begin{document}
\begin{figure}
\tabcolsep=0pt \tiny
\noindent
\begin{tabular}{cccccccccc}
\begin{tabular}[b]{cc}
\includegraphics[width=0.0625\textwidth]{example-image-golden} &
\includegraphics[width=0.0625\textwidth]{example-image-golden} \\[-\dp\strutbox]
\includegraphics[width=0.0625\textwidth]{example-image-golden} &
\includegraphics[width=0.0625\textwidth]{example-image-golden} 
\end{tabular}&
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden} &
\includegraphics[width=0.125\textwidth]{example-image-golden}
\end{tabular}
\end{figure}
\end{document} 

在此处输入图片描述

相关内容