如何将插图放在页面上的两列中并对其进行编号?还有一个问题。如何插入高度为文本高度 30% 的图像。谢谢。
答案1
这就是你所追求的吗?
\documentclass{article}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage[export]{adjustbox}
\begin{document}
\begin{multicols}{2}
\begin{enumerate}
\item \includegraphics[width=4cm,valign=t]{example-image}
\item \includegraphics[width=4cm,valign=t]{example-image}
\item \includegraphics[width=4cm,valign=t]{example-image}
\item \includegraphics[width=4cm,valign=t]{example-image}
\item \includegraphics[width=4cm,valign=t]{example-image}
\item \includegraphics[width=4cm,valign=t]{example-image}
\end{enumerate}
\end{multicols}
\end{document}