我怎样才能在 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}