如何在乳胶中以 ieee 格式将四幅图(3 幅带标题的图和 1 幅带另一个标题的图)并排排列在一行中

如何在乳胶中以 ieee 格式将四幅图(3 幅带标题的图和 1 幅带另一个标题的图)并排排列在一行中

我怎样才能在 overleaf 的一行中添加 4 个数字(三个数字带一个标题)和第四个数字与另一个标题?

谢谢。

答案1

如果您使用的是IEEEtran文档类,以下解决方案可能会让您感兴趣。它在一个环境中使用两个并排的minipage环境figure*。第一个环境minipage包含三个\includegraphics指令和一个\caption命令;第二个minipage环境包含一个\includegraphics指令和一个\caption命令。

在此处输入图片描述

请注意,LaTeX 被编程为将figure*环境(以及table*环境也一样)放在页面的顶部。

\documentclass[demo]{IEEEtran} % omit 'demo' version in real document
\usepackage{graphicx}

\begin{document}

\begin{figure*}

\begin{minipage}[t]{0.65\textwidth}
\includegraphics[width=0.32\linewidth]{figYa}
\hspace{\fill}
\includegraphics[width=0.32\linewidth]{figYb}
\hspace{\fill}
\includegraphics[width=0.32\linewidth]{figYc}

\caption{A figure with three graphs}
\end{minipage}
\hfill
\begin{minipage}[t]{0.3\textwidth}
\includegraphics[width=\linewidth]{figZ}

\caption{A figure with a single graph}
\end{minipage}

\end{figure*}

\end{document}

相关内容