我需要在双列文档中放置 3 个数字,wherein the 3rd figure at the bottom needs to be centred!
我该怎么做?
我想要这样的东西:
对我一直使用的 4 个数字执行相同操作:
\begin{figure*}
\begin{multicols}{2}
\includegraphics[width=\linewidth]{1.eps}\par
\includegraphics[width=\linewidth]{2.eps}\par
\end{multicols}
\begin{multicols}{2}
\includegraphics[width=\linewidth]{3.eps}
\includegraphics[width=\linewidth]{4.eps}
\end{multicols}
\caption{Here}
\end{figure*}
它运行完美,我能够在双列文档中对齐 4 个数字。
答案1
\documentclass[twocolumn]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure*}
\centering
\includegraphics[height=3cm]{example-image-a}\quad
\includegraphics[height=3cm]{example-image-b}\par\medskip
\includegraphics[height=3cm]{example-image-c}
\caption{a figure with three subfigures}
\end{figure*}
\end{document}