Ho provato ad utilizzare figure* al posto di figure ma il risultato è che tutte le immagini vengono spostate in fondo alla pagina su una sola colonna. Questo è il codice del mio main:
`
\documentclass[aps,twocolumn,italian,twoside,secnumarabic,balancelastpage,amsmath,amssymb,nofootinbib,hyperref=pdftex]{revtex4}
\usepackage[italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage{chapterbib} % allows a bibliography for each chapter (each labguide has it's own)
\usepackage{color} % produces boxes or entire pages with colored backgrounds
\usepackage{graphics} % standard graphics specifications
\usepackage[pdftex]{graphicx} % alternative graphics specifications
\usepackage{longtable} % helps with long table options
\usepackage{epsf} % old package handles encapsulated post script issues
\usepackage{bm} % special 'bold-math' package
\usepackage{verbatim} % for comment environment
\usepackage{multirow}
\usepackage{color,framed}
\usepackage[colorlinks=true]{hyperref} % this package should be added after all others
\definecolor{shadecolor}{gray}{0.9}
\addtolength\topmargin{-.5\topmargin} %increases the top margin by half.
\begin{document}
\input{copertina}
\input{abstract}
\newpage
\vspace{4cm}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{contenuto}
\begin{acknowledgments} Si ringrazia per la assistenza tecnica
\end{acknowledgments}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clearpage
\appendix
\nocite{*}
\bibliographystyle{unsrt}
\bibliography{articolo}
\end{document}
`
Mentre questo è il codice per inserire l’immagine:
`
\begin{figure*}[h]
\includegraphics[width=9cm]{img/tab2}
\caption{SIEROTIPI PRESENTI IN 475 CASI DI OPSI NEGLI USA CDC. ACTIVE BACTERIAL CORE SURVEILLANCE AREAS, 2006-2008.}
\end{figure*}
`
Qualcuno sa aiutarmi?