我的来源有问题。我需要在围兜文件后插入图片。 整个文件分为2列,而bib文件后面的图片应位于中间。此外,图片不应位于新页面上。
我将为此永远花钱。
我的所有代码都在下面,我将所有代码都发布了,因为我根本不是乳胶专家,而且即使在软件包定义中,我也可能做了一些特别奇怪的事情:
非常感谢任何建议
\documentclass[conference]{IEEEtran}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{balance}
\usepackage[none]{hyphenat}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{cite}
\ifCLASSINFOpdf
\usepackage{graphicx,wrapfig,lipsum}
\else
\fi
\usepackage{float}
\restylefloat{table}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@makecaption}
{\scshape}
{}
{}
{}
\makeatletter
\patchcmd{\@makecaption}
{\\}
{.\ }
{}
{}
\makeatother
\def\tablename{Table}
\usepackage{todonotes}
\usepackage{soul}
\usepackage{siunitx}
\usepackage{amsmath}
\usepackage{siunitx}
\hyphenation{op-tical net-works semi-conduc-tor}
\newcounter{mycomment}
\newcommand{\mycomment}[2][]{%
% initials of the author (optional) + note in the argin
\refstepcounter{mycomment}%
{%
\todo[inline,color={red!100!green!33},size=\small,caption={}]{%
\textbf{Comment [\uppercase{#1}\themycomment]:}~#2}%
}}
\newcommand{\deleted}[2][0]{\textcolor{red}{\st{#2}}}
\newcommand{\changed}[2][0]{\textcolor{red}{#2}}
\usepackage{comment}
\begin{document}
\title{...}
\author{
\IEEEauthorblockN{...}
\maketitle
\begin{abstract}
........
\section{Conclusion}
.........
\section*{Acknowledgments}
.........
\bibliography{I2MTC19}
\bibliographystyle{IEEEtran}
\balance
\begin{figure}
\centering %
\includegraphics[scale=0.5]....png}%
\caption{....} %
\end{figure}
\end{document}