我想在 Latex 中创建一个序列文档,就像使用 MS Word 一样。除了普通的文本数据外,我还想连续包含图片。有可能这样做吗?
答案1
提问时最好加上最小工作示例充分解释你想要什么。理想情况下,你应该发布一些接近工作的代码,并附上命令\documentclass
和\begin{document}...\end{document}
。这可以让别人更容易帮助你,因为它让你更清楚地了解你想要什么,而且有一些工作代码可以作为起点。
我认为您只是想在不同的投影仪幻灯片上显示一系列图像。如果是这样,那么下面的操作将满足您的要求:
\documentclass{beamer}
\usepackage{mwe}% for some example images
\usepackage{pgffor}% loading \foreach
\begin{document}
\begin{frame}{Some pictures}
\foreach \image [count=\fr] in {example-image-a,example-image-b,example-image-c} {
\only<\fr> {This is image \image: \includegraphics[width=20mm]{\image}}
\pause
}
\end{frame}
\end{document}
我已经使用姆韦\foreach
包中的一些示例图像。前列腺素用于循环遍历图像。
输出如下: