如何正確使用latex人物

如何正確使用latex人物

我使用以下標籤在我的乳膠中放置一個圖形,其中有 2 個圖形 a 和 b,並且顯示為彼此後面的一個圖形:

\begin{figure}[ht]
\centering
\resizebox{\textwidth}{!}{%
\begin{tabular}{c c}
\includegraphics[width=2.0in] {fig1} &
\includegraphics [width=2.0in]{fig2} \\
\tiny   a. Pure Aloha & \tiny  b.~~ Slotted Aloha
\end{tabular}}
\centering
\caption{Comparision between pure Aloha and slotted Aloha and how they affected by the delay \cite{ahn2011design}}
\label{fig:1}
\end{figure}

但我的 IEEE 格式的文字出現在圖像上方,如下圖所示:

問題

有什麼建議 ?

答案1

你必須使用figure*,而不是figure。但程式碼中還有其他方面要注意。

放大因某些未知因素而縮小的內容,然後猜測子標題的大小是沒有意義的。首先將圖片縮放到合適的尺寸即可。這是一個例子:

\documentclass{IEEEtran}
\usepackage{graphicx}

\usepackage{lipsum} % just for the example

\begin{document}

\lipsum

\begin{figure*}
\centering

\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}c c cc}
&\includegraphics[width=.4\textwidth]{example-image-a} &
\includegraphics[width=.4\textwidth]{example-image-b} &\\
&a. Pure Aloha & b. Slotted Aloha &
\end{tabular*}

\caption{Comparison between pure Aloha and slotted Aloha and
         how they are affected by the delay \cite{ahn2011design}}
\label{fig:1}

\end{figure*}

\lipsum[1-15]

\end{document}

我使用tabular*四列(外部是空的),因此可以自動填充兩側和中間的空間。還有其他方法。

在此輸入影像描述

答案2

如果你想跨越兩列中的浮動,你應該使用

\begin{figure*}



\end{figure*}

相關內容