[Tex/LaTex] Figure or text outside a block in tikzposter

tikzposter

When making a poster with tikzposter, is there a method by which one can put a figure outside of a block, or even just some text? For example, a university logo in the corner.

Best Answer

Yes, you can: In tikzposter you are already in a big tikzpicture. Just place your nodes as usual. The center of the page is (0,0).

One can also mention that the class defines a coordinate bottomleft in the lower left corner and topright in the upper right, so these can be used to place stuff relative to corners.

\documentclass{tikzposter} 
\begin{document}

\node [above right,font=\Huge] at (bottomleft) {LOWER LEFT};

\node [above left,font=\Huge,outer sep=2cm] at (bottomleft -| topright) {LOWER RIGHT};

\node [below right,font=\Huge] at (bottomleft |- topright) {UPPER LEFT};

\node [below left,font=\Huge] at (topright) {UPPER RIGHT};

\end{document}