我是 Latex 新手,需要帮助,如何选择文件夹中的所有图像?我尝试使用流行的/*.jpg
,但没有用
\documentclass{article} \usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics[width=0.5\textwidth]{C:/Users/myuser/Pictures/Images/*.jpg}
\end{figure}
\end{document}
答案1
一种方法是重命名所有图像,例如图片1.jpg,图片2.jpg等等。如果是这样,我们可以使用pgffor 包像这样:
\documentclass{article}
\usepackage{graphicx,pgffor}
\begin{document}
\foreach \i in {1,...,5}{
\begin{figure} \includegraphics[width=0.5\textwidth]{C:/Users/myuser/Pictures/Images/image\i.jpg} \end{figure}
}
\end{document}