如何在会议论文中插入图片?

如何在会议论文中插入图片?

我现在在大学学习乳胶,我尝试了在互联网上找到的所有方法,但都没有用。我正在写一篇会议论文,有两栏。我想插入占据两栏空间的图像。到目前为止,它看起来像这样:http://prntscr.com/4xgnzm

我有关于图像的以下代码:

 \usepackage{graphicx}
 \graphicspath{ {images/} }

文档内容如下:

\begin{figure}[h]
\includegraphics{latexPic}
\caption{\bf {\large Overview of the integrity discovery system using secure introspection}}
\end{figure}

有人能告诉我如何格式化图像,以便文本围绕它并且图像位于两列空间内吗?PS。这是我第一次在这里发帖,如果有什么不符合规则,我深表歉意。编辑:我尽可能多地剪切文本,但现在看不到问题(图像出现在文本下方)。无论如何,这里是代码:

\documentclass[10pt, conference]{IEEEtran}
\usepackage{graphicx}
\graphicspath{ {images/} }

\begin{document}
\IEEEoverridecommandlockouts
\IEEEpubid{\makebox[\columnwidth]{ \copyright 2009 ACM 978-1-60558-784-4/09/11...\$10.00 \hfill}
\hspace{\columnsep}\makebox[\columnwidth]{ }}

\maketitle
\begin{abstract}
\section*{\raggedright{\bf{ABSTRACT}}}
Cloud infrastructure commonly relies on virtualization. Customers

\end{abstract}

\section*{\raggedright{\bf{\Large{1. INTRODUCTION}}}}
Cloud computing holds significant promise to improve the deployment
and management of services by allowing the efficient 
\IEEEpubidadjcol
sharing of hardware resources. In a typical cloud scenario, a user
\section*{\raggedright{\bf{\Large{3. OVERVIEW OF OUR ARCHITECTURE}}}}
Ensuring integrity in a running operating system is a daunting
\begin{figure}[h]
\includegraphics{latexPic}
\caption{\bf {\large Overview of the integrity discovery system using secure     introspection}}
\end{figure}
challenge, and one that has been explored for a long time in the
research community. In a system running on real hardware, all integrity
checks need to be done from within the system being monitored,
which inevitably raises the question of how to verify the
\end{document}

答案1

也许是这样的,我将图表既作为单列图表,又作为双列图表分布在下一页。

我还从章节标题中删除了所有格式化命令,并删除了“手动”章节编号。

\documentclass[10pt, conference]{IEEEtran}
\usepackage[demo]{graphicx}% so it makes black blobs
\graphicspath{ {images/} }

\title{something}
\author{you}
\begin{document}
\IEEEoverridecommandlockouts
\IEEEpubid{\makebox[\columnwidth]{ \copyright 2009 ACM 978-1-60558-784-4/09/11...\$10.00 \hfill}
\hspace{\columnsep}\makebox[\columnwidth]{ }}

\maketitle
\begin{abstract}
Cloud infrastructure commonly relies on virtualization. Customers
\end{abstract}

\section{INTRODUCTION}
Cloud computing holds significant promise to improve the deployment
and management of services by allowing the efficient 
\IEEEpubidadjcol
sharing of hardware resources. In a typical cloud scenario, a user
\section{OVERVIEW OF OUR ARCHITECTURE}

Ensuring integrity in a running operating system is a daunting
\begin{figure}[bhp]
\includegraphics[width=\columnwidth]{latexPic}
\caption{Overview of the integrity discovery system using secure     introspection}
\end{figure}
challenge, and one that has been explored for a long time in the
research community. In a system running on real hardware, all integrity
checks need to be done from within the system being monitored,
which inevitably raises the question of how to verify the

Ensuring integrity in a running operating system is a daunting
\begin{figure*}[tp]
\includegraphics[width=\textwidth]{latexPic}
\caption{Overview of the integrity discovery system using secure     introspection}
\end{figure*}
challenge, and one that has been explored for a long time in the
research community. In a system running on real hardware, all integrity
checks need to be done from within the system being monitored,
which inevitably raises the question of how to verify the

\end{document}

答案2

另一种方法是按照@Bernard 的指示。此外,我添加了caption用于微调字幕的软件包命令 \captionof{...}{...}将标题放在或者人物.我认为你应该放一些类似

\usepackage{cuted}
\usepackage{caption}
\captionsetup[figure]{textfont={bf,large}}

在序言中,并插入如下图

\begin{strip}
\includegraphics[width=\linewidth]{latexPic}
\captionof{figure}{Overview of the integrity discovery system using secure introspection}
\end{strip}

相关内容