提问于:
浏览数:
2814
![](https://wenda.latexstudio.net/data/attach/210203/d5O4UeUY.png)
如何在双栏下,让多张图片在同一页显示?如图片所示
1 回答
1
放在同一个浮动体里面
```tex
\documentclass[twocolumn]{article}
\usepackage{mwe}
\begin{document}
\begin{figure*}[ht]
\centering
\includegraphics{example-image-a.pdf}
\caption{A}
\includegraphics{example-image-b.pdf}
\caption{B}
\end{figure*}
\end{document}
```
-
非常感谢! – 琳风晓月 2021-02-03 11:03 回复
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。