IEEE 乳胶纸上并排的 4 幅图

IEEE 乳胶纸上并排的 4 幅图

我想让 4 个数字并排显示,但在 latex 中我得到的却是这个 在此处输入图片描述

我希望将它们并排放置,而不是将 3 个放在第一行,将第 4 个放在第二行。

以下是我使用的代码:

\documentclass[10pt,conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{lipsum}% Just for this example

\usepackage{subfigure}   


\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}


\begin{figure*}
\begin{minipage}[b]{.24\textwidth}
\centering
\includegraphics[width=4.95cm,height=4cm]{Figures/TracePrecisionVsTtoNError.png}
\caption{T trace Precision \% versus T$\rightarrow$N errors Seeding}
\label{TracePrecisionTError}
\end{minipage}\qquad
\begin{minipage}[b]{.24\textwidth}
\centering
\includegraphics[width=4.95cm,height=4cm]{Figures/TracePrecisionVsTtoNError.png}
\caption{N trace Precision \% versus T$\rightarrow$N errors Seeding}
\label{NoTracePrecisionTError}
\end{minipage}\qquad
\begin{minipage}[b]{.24\textwidth}
\centering
\includegraphics[width=4.95cm,height=4cm]{Figures/TracePrecisionVsTtoNError.png}
\caption{T trace Recall \% versus T$\rightarrow$N errors Seeding}
\label{TraceRecallTError}
\end{minipage}\qquad
\begin{minipage}[b]{.24\textwidth}
\centering
\includegraphics[width=4.95cm,height=4cm]{Figures/TracePrecisionVsTtoNError.png}
\caption{N trace Recall \% versus T$\rightarrow$N errors Seeding}
\label{NoTraceRecallTError}
\end{minipage}


\end{figure*}

\end{document}

这是我为每个图形使用的图片:TracePrecisionVsTtoNError.png 在此处输入图片描述

答案1

您有 4 个小页面,每个占 的\textwidth...\qquad

只需用 替换所有出现的\qquad即可\hfill分散数字之间剩余的 4% 空格。

相关内容