It worked! Since I need to align only the shortest of the images, I've done
some modifications (learning-by-trying) to your code. I use:
\newcommand\centerAlign[1]{%
\raisebox{\height}{#1}%
}
in the LaTeX preample, and then
\centerAlign{<image>}
as TeX code in my tables. Doing this way, the image is vertically centered.
Danke, Herbert!
Stefano
> -----Messaggio originale-----
> Da: Herbert Voss [mailto:[EMAIL PROTECTED]]
> Inviato: sabato 17 novembre 2001 22.53
> A: Stefano Maggi
> Cc: [EMAIL PROTECTED]
> Oggetto: Re: R: Vertical alignment of images in tables
>
>
> Stefano Maggi wrote:
>
> >>do you want to have them both on the top?
> >>Herbert
> >>
> >
> >Yes, that would be fine. Do you know how can I do?
> >Stefano
> >
> try this in LaTeX preamble
>
> \newcommand\myTwoFig[2]{%
> \raisebox{-\height}{#1}%
> \raisebox{-\height}{#2}%
> }
>
> and in your text in tex (red)
> \myTwoFig{<insert image 1>}{<insert image 2>}
>
> the images can be insert with the menu button.
>
> Herbert
>