[Tex/LaTex] Put two logos to the right side of the baposter

baposterlogos

There are two logos: eyecatcher on the left and logo on the right in the setting of baposter.
However, is it possible to put both TWO logos on the RIGHT side of baposter, with one on top of the other?

The following is the chunk of code

eyecatcher=false
% Eye Catcher Images to go left of your title.
{\includegraphics[width=1.5in]{A.png}} %will not show if put eyecatcher=false
% Title
{\bf\textsc{POSTER TITLE}\vspace{0.5em}}
% Author
{\bf\textsc{AuthorName}}
% Logo
{\includegraphics[width=3in]{B.png}}

With the code, I can only show B.png on the top right of the poster. I want to put A.png on top of B.png, both on the top right side of the poster.

Best Answer

Yes, you can use a tabular environment the following manner:

{\begin{tabular}{l}
\includegraphics[height=4em]{sponsorlogo1.eps}\\
\includegraphics[height=4em]{sponsorlogo2.png}
\end{tabular}
}  % Second university/lab logos on the right

In place of:

% Logo
{\includegraphics[width=3in]{B.png}}

Hopefully this works fine but I can provide more details if you wish.