在 的设置中,有两个徽标:eyecatcher
左侧为 ,右侧为baposter
。但是,是否可以将两个徽标都放在 的右侧baposter
,一个放在另一个的上方?
以下是代码块
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}}
使用代码,我只能B.png
在海报的右上方显示。我想将其放在海报的A.png
上方B.png
,两者都在海报的右上方。
答案1
是的,您可以按照以下方式使用表格环境:
{\begin{tabular}{l}
\includegraphics[height=4em]{sponsorlogo1.eps}\\
\includegraphics[height=4em]{sponsorlogo2.png}
\end{tabular}
} % Second university/lab logos on the right
代替:
% Logo
{\includegraphics[width=3in]{B.png}}
希望这能正常工作,但如果您愿意,我可以提供更多详细信息。