在海报底部放置多个徽标

在海报底部放置多个徽标

我正在使用sciposter并尝试在海报页脚上放置三个徽标:一个在左侧,一个在中间,一个在右侧。有人能帮我吗?

根据要求,我添加了一个 MWE:

\documentclass{sciposter}
\title{Title}
\author{My name}
\institute{Institute,\\
    University\\}
\email{email} 
\begin{document}
\conference{Conference}
\maketitle
    \begin{abstract}
        This is the abstract.
    \end{abstract}
    \section{Introduction}
    This is the introduction
\end{document}

答案1

您可能期望看到以下内容。(it当然,我的 应该被您的徽标替换。)

评论第一个解决方案在代码中被注释掉并且只包含最终的图片。

\documentclass{sciposter}
\usepackage{graphicx}


\title{Title}
\author{My name}
\institute{Institute,\\
    University\\}
\email{email} 
\begin{document}
%\conference{Conference}
% The first version
%\conference{\includegraphics[width=5cm]{it}\hfill
%\includegraphics[width=5cm]{it}\hfill
%\includegraphics[width=5cm]{it}}
% The version with you logos, renamed VRA, VRB, VRC
\conference{\raisebox{2cm}[0cm]{\includegraphics[height=5cm]{VRA}}\hfill
\raisebox{2cm}[0cm]{\includegraphics[height=5cm]{VRB}}\hfill
\raisebox{2cm}[0cm]{\includegraphics[height=5cm]{VRC}}}
% (The precise values are to be chosen according to your taste. 
% It is a naive solution, hence you should be careful not to overlap logos with too long text of a poster.
\maketitle
    \begin{abstract}
        This is the abstract.
    \end{abstract}
    \section{Introduction}
    This is the introduction


\end{document}

在此处输入图片描述

相关内容