1

I am looking for how I could place an image outside a block and control its position. For example, a flow chart outside between two blocks on a page. Another example would be placing several logos around the title on the poster.

There appears to not be a way to do this.

The Guy
  • 411

1 Answers1

2

Currently, not much to do. A bit of hacking gets results that aren't really satisfying.

\documentclass[colspace=25mm, subcolspace=0mm]{tikzposter}
\usepackage{lmodern}
\usepackage{blindtext}
\usebackgroundstyle{Rays}
\begin{document}
\begin{columns}
    \column{.32}
\block{Walzing Wombat}{%
    Wombats love the walz, ducks dance dixie
}
\column{.32}
\block[linewidth=0pt,bodyinnersep=0pt,roundedcorners=false,]{}{%
    \centering
    \includegraphics[width=.95\linewidth]{example-image}
}
\column{.32}
\block{lurking lizard}{%
    sassy salamander
}
\end{columns}
\end{document}
Johannes_B
  • 24,235
  • 10
  • 93
  • 248