I need to use both the package fix2col and subfigure. However, it seems that these two package are incompatible which lead to the failure to display a figure cross two columns. The code is as follows. If I do not include the fix2col, everything is fine. However, I need this package(quoted by another package I need). How can I fix that problem?
Code: Select all
\documentclass[twoside,twocolumn]{article}
\RequirePackage{ifpdf}
\RequirePackage[pdftex]{graphicx}
\RequirePackage[pdftex]{color}
\RequirePackage{subfigure}
\usepackage{fix2col}
\title{problem LaTeX file}
\usepackage{url}
\urlstyle{tt}
% Donald Arsenau's fix for missing kerning of "//" and ":/"
\begin{document}
\begin{figure}[ht]
\centering
\subfigure[Case I]{
\includegraphics[scale=0.3]{grid_curve1}
}
\subfigure[Case II]{
\includegraphics[scale=0.3]{grid_curve2}
}
\subfigure[Case III]{
\includegraphics[scale=0.3]{grid_curve1_curve2_2}
}
\caption{Effect of thresholds}
\label{fig:thresholdEffect}
\end{figure}
\
\begin{figure*}
\centering
\includegraphics[scale=0.83]{bbIso}
\caption{Figure across two columns.}
\label{fg:timings}
\end{figure*}
\section{Conclusion and Future Work}
\label{sc:conclusion}
\end{document}