tikzposter 4 个徽标标题(每侧 2 个)

tikzposter 4 个徽标标题(每侧 2 个)

我正在尝试在 tikzposter 中的海报标题两侧各放置 4 个徽标。有没有办法将标题与图片重叠?也许可以\titlegraphic使用 将其放置在不同的图层中\settitle

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

\usepackage{xcolor}
\usepackage{filecontents}% http://ctan.org/pkg/filecontents
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{tikz}
\usepackage{multicol}
\usepackage{adjustbox}

\setlength{\columnsep}{2cm}

\title{\parbox{0.5\linewidth}{\centering My  really  really  really  really  really  really  really  really  long poster TITLE.}}
\author{Name}
\titlegraphic{
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
 \hfill 
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
\\% \vspace{5pt} \\
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
 \hfill 
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
}

\usetheme{Autumn}\usecolorstyle[colorPalette=BrownBlueOrange]{Germany}

\begin{document}

\maketitle

\block{My LIPSUM block}{
  \lipsum[1]
}

\end{document}

在此处输入图片描述

答案1

这是您想要的吗?根据手册第 4-5 页,您可以在命令中使用确定titlegraphic和之间垂直距离的参数。title description \TP@titlegraphictotitledistance\setitle

通过(在 makeatletter ... makeatother 内)更改默认值

\def\TP@titlegraphictotitledistance{-9cm}   % -9 can be adjusted to one's need
\settitle{ \centering \vbox{
\@titlegraphic \\[\TP@titlegraphictotitledistance] \centering
\color{titlefgcolor} {\bfseries \Huge \sc \@title \par}
\vspace*{1em}
{\huge \@author \par} \vspace*{1em} {\LARGE \@institute}
}}

在此处输入图片描述

代码

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

\usepackage{xcolor}
\usepackage{graphicx,mwe}
\usepackage{filecontents}% http://ctan.org/pkg/filecontents
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{tikz}
\usepackage{multicol}
\usepackage{adjustbox}

\makeatletter
\def\TP@titlegraphictotitledistance{-9cm}
\settitle{ \centering \vbox{
\@titlegraphic \\ [\TP@titlegraphictotitledistance] 
\centering
\color{titlefgcolor} {\bfseries \Huge \sc \@title \par}
\vspace*{1em}
{\huge \@author \par} \vspace*{1em} {\LARGE \@institute}
}}
\makeatother

\setlength{\columnsep}{2cm}
%
\title{\parbox{0.5\linewidth}{\centering My  really  really  really  really  really  really  really  really  long poster TITLE.}}
\author{Name}
\titlegraphic{
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
 \hfill 
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
\\% \vspace{5pt} \\
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
 \hfill 
\includegraphics[width=10cm,height=5cm]{./myImage.jpg}
}

\usetheme{Autumn}\usecolorstyle[colorPalette=BrownBlueOrange]{Germany}

\begin{document}

\maketitle

\block{My LIPSUM block}{
  \lipsum[1]
}

\end{document}

相关内容