On Tue, Jul 10, 2001 at 09:58:02AM +0200, Rainer Dorsch wrote:
> 
> But that does not work, if I want to use it only in one float environment in 
> the document...
> 
> ...I think I will write the latex code.

Then put the following at the beginning of the float you want to change

\let\origsubfigure\subfigure
\renewcommand\subfigure[2][]{%
 \hspace{10bp}\origsubfigure[#1]{#2}\hspace{10bp}%
 }
 

Another option is to put the following in the preamble,

\let\origsubfigure\subfigure
\newcommand\mysubfigure[2][]{%
 \hspace{10bp}\origsubfigure[#1]{#2}\hspace{10bp}%
}

and at the beginning of the float you want to change put
\let\subfigure\mysubfigure

Reply via email to