When I compile, the images (.jpg and .png) inserted in my tikzposter document don't display - I just get a box with the image path instead. It looks like this:
Existing answers to similar questions (Why is the picture not inserted?, Images not showing up and Images not visible in PDF) haven't worked for me.
The images did display in this document before, and I can't figure out what I did to stop them showing up.
I've tried commenting out most of the preamble lines individually, but with no success.
Any help would be greatly appreciated.
Here's my MWE:
\documentclass[25pt, a1paper, landscape]{tikzposter}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{Title}
\author{Name}
\date{\today}
\institute{Institution}
\usepackage{blindtext}
\usepackage{comment}
\usetheme{Basic}
\begin{document}
\maketitle
\begin{columns}
\column{0.33}
\block{Column 1}{
\begin{tikzfigure}[Test\label{here}]
\includegraphics[width=0.33\colwidth]{images/Test.png}
\end{tikzfigure}
}
\end{columns}
\end{document}

example-image.pnginstead ofimages/Test.png. – Ignasi Sep 15 '16 at 07:22Package tikzposter Warning: Unknown Option draft. on input line 204. I don't get this error in the separate 'project', however. So is this the culprit? – Owain Sep 15 '16 at 07:36draftoption is the culprit.draftoption fromgraphicxdoes the result you get. Some of your files introduces it. – Ignasi Sep 15 '16 at 07:47