编辑:

编辑:

我想创建一个海报标题,徽标右对齐,而不是位于标题文本之上。我有:

\documentclass[25pt, a0paper, landscape, margin=0mm, innermargin=15mm, blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]{tikzposter}
\usetheme{Desert}

\title{Detecting Multi-word Expressions in Typed Text} 
\author{AdamG} 
\institute{Graduate Center}
\titlegraphic{\includegraphics{GCLogo.jpg}}

\begin{document}
\maketitle
\end{document}

我如何才能改变徽标的对齐方式?

答案1

\documentclass[25pt, a0paper, landscape, margin=0mm, innermargin=15mm, blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]{tikzposter}
\usetheme{Desert}

\title{Detecting Multi-word Expressions in Typed Text}
\author{AdamG}
\institute{Graduate Center}
\titlegraphic{\includegraphics{example-image}}

\makeatletter
\renewcommand\TP@maketitle{%
   \begin{minipage}{0.8\linewidth}
        \centering
        \color{titlefgcolor}
        {\bfseries \Huge \sc \@title \par}
        \vspace*{1em}
        {\huge \@author \par}
        \vspace*{1em}
        {\LARGE \@institute}
    \end{minipage}%
    \hfill
    \begin{minipage}{0.2\linewidth}
       \centering
       \@titlegraphic
    \end{minipage}
}
\makeatother

\begin{document}
\maketitle
\end{document}

在此处输入图片描述

请对 s 的宽度等进行微调minipage以适合您的喜好。

编辑:

您可以通过以下方式使标题居中:

\documentclass[25pt, a0paper, landscape, margin=0mm, innermargin=15mm, blockverticalspace=15mm, colspace=15mm, subcolspace=8mm]{tikzposter}
\usetheme{Desert}

\title{Detecting Multi-word Expressions in Typed Text}
\author{AdamG}
\institute{Graduate Center}
\titlegraphic{\includegraphics{example-image}}

\makeatletter
\renewcommand\TP@maketitle{%
   \centering
   \begin{minipage}[b]{0.8\linewidth}
        \centering
        \color{titlefgcolor}
        {\bfseries \Huge \sc \@title \par}
        \vspace*{1em}
        {\huge \@author \par}
        \vspace*{1em}
        {\LARGE \@institute}
    \end{minipage}%
      \tikz[remember picture,overlay]\node[scale=0.8,anchor=east,xshift=0.56\linewidth,yshift=3.9cm,inner sep=0pt] {%
       \@titlegraphic
    };
}
\makeatother

\begin{document}
\maketitle
\end{document}

在此处输入图片描述

同样,可以根据需要进行微调。

相关内容