I am using subfigure with the imsart document class.
Everything is compiling, but I'd like to flush the entire subfigure box to the left (because the right figure spills to the margin). Any advice on how to do this?
Thank you very much,
Asaf
Code: Select all
\documentclass[aoas,preprint]{imsart}
\RequirePackage[OT1]{fontenc}
\RequirePackage{amsmath, amsfonts, amssymb, amsthm}
\RequirePackage[numbers]{natbib}
\RequirePackage[colorlinks,citecolor=blue,urlcolor=blue,breaklinks=true]{hyperref}
\RequirePackage{graphicx}
\RequirePackage{caption}
\RequirePackage{subcaption}
\RequirePackage{float}
\RequirePackage{enumerate}
%\RequirePackage[hyphenbreaks]{breakurl}
% settings
%\pubyear{2005}
%\volume{0}
%\issue{0}
%\firstpage{1}
%\lastpage{8}
% AW:doc specific commands
\setlength\parindent{0pt}
\newcommand{\forceindent}{\leavevmode{\parindent=1em\indent}}
\addtolength{\topmargin}{-40pt}
\begin{document}
%JB: Please note, that this is TeX, not LaTeX
\begin{figure}[H]
%\centering
\begin{subfigure}[b]{0.375\textwidth}
\includegraphics[scale=.35,angle=0]{plt1.pdf}
\caption{confidence regions}
\label{fig2}
\end{subfigure}
\hspace{3em}
\begin{subfigure}[b]{0.375\textwidth}
\includegraphics[scale=.35,angle=0]{plt1.pdf}
\caption{confidence regions}
\label{fig3}
\end{subfigure}
% \caption{a confidence region}
\end{figure}
%\bibliographystyle{abbrvnat}
%\bibliography{/Users/assafweinstein/Dropbox/Research/References}
\end{document}