제목 텍스트 위에 로고가 아닌 오른쪽 정렬로 포스터 제목을 만들고 싶습니다. 내가 가진 것은 다음과 같습니다.
\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}
minipage
취향에 맞게 s 폭 등 미세 조정을 해주세요 .
편집하다:
다음과 같은 방법으로 제목을 중앙에 배치합니다.
\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}
다시 말하지만, 필요에 따라 미세 조정이 이루어질 수 있습니다.