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\origsubfig
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.
Thanks.
Rainer.
> Rainer Dorsch wrote:
> >
> > can I do soemthing like this in LyX (without typing plain LaTeX)?
> >
> > \subfigure[...]{\hspace{10bp}\includ
Rainer Dorsch wrote:
>
> can I do soemthing like this in LyX (without typing plain LaTeX)?
>
> \subfigure[...]{\hspace{10bp}\includegraphics[width=1in]{...}\hspace{10bp}}
in preamble:
\let\mysubfigure\subfigure
\renewcommand\subfigure[2][]{%
\hspace{10bp}\mysubfigure[#1]{#2}\hspace{10bp}%
}
Hello,
can I do soemthing like this in LyX (without typing plain LaTeX)?
\subfigure[...]{\hspace{10bp}\includegraphics[width=1in]{...}\hspace{10bp}}
or
\subfigure[...]{\hbox to 92bp{%
\hfil
\includegraphics[width=1in]{...}%
\hfil}}
Thanks,