Since the text in the figures are too small, it's better if I can enlarge them without putting each subfigure on a separate line. I can see only one way to do this is expand the figure to cover the spaces on the left and right side of the figure. Is there any way I can do this ?
Here is the part of the page which contains the figure
And the code to generate it.
\begin{figure*}[!h!t]
\centering
\subfigure[Panda - Week 2]{
\includegraphics[width=0.4\linewidth] {fig/thang_panda2.png}
\label{fig:esp1_3}
}
\subfigure[Panda - Week 3]{
\includegraphics[width=0.4\linewidth] {fig/thang_panda3.png}
\label{fig:esp1_4}
}
\subfigure[Penguin - Week 2]{
\includegraphics[width=0.4\linewidth] {fig/thang_penguin2.png}
\label{fig:esp1_5}
}
\subfigure[Penguin - Week 3]{
\includegraphics[width=0.4\linewidth] {fig/thang_penguin3.png}
\label{fig:esp1_6}
}
\caption{Collaboration using the whiteboard}
\label{fig:esp1}
\end{figure*}
twosideoption, so\makebox[\linewidth]{\includegraphics[width=<len>]{<file>}}where you specify<len>would work. Even if<len>>\textwidth(say\paperwidth, or1.1\textwidth, you won't receive any overfull box warnings, since the output is stored in a box of width\linewidth. – Werner Jan 10 '13 at 00:56