使用 tikz 海报添加背景图片

使用 tikz 海报添加背景图片

使用该tikzposter包时,可以添加背景图像吗?

我现在有一个颜色渐变,最好保持它完整,并将图像叠加在其上。

当前文档看起来有点像这样:

\documentclass{tikzposter}
\tikzposterlatexaffectionproofoff

%% colors
% title
\definecolor{backgroundcolortop}{RGB}{255,255,255}
\definecolor{backgroundcolormiddle}{RGB}{255,255,255}
\definecolor{backgroundcolorbottom}{RGB}{91,195,240}

\title{Ttile}
\author{{\LARGE Authors}\\{\normalsize email}}
\institute{{\Large Institute}}

\begin{document}
\titleblock[seperated=false, embedded=true]
%...
\end{document}

答案1

您可以尝试添加类似

\node[above right,opacity=0.3,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-16x10}};

紧接着\begin{document}。这依赖于整个海报本质上是一个大的tikzpicture,并且该类bottomleft在页面的左下角定义一个坐标。

在此处输入图片描述

\documentclass{tikzposter} 
\usetheme{Rays}
\title{Something or other}
\author{A Bloke}
\institute{Department of Complete Nonsense\\[0.5cm] \url{[email protected]}}
\usepackage{url,lipsum}
\begin{document}
\node[above right,opacity=0.3,inner sep=0pt,outer sep=0pt] at (bottomleft) {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-16x10}};

\maketitle

\block{Stuff}{\lipsum}
\end{document}

相关内容