I am making a small homebrew project for Dungeons and Dragons and I would like to make a cover to look similarly to original products. For example this one:
https://images-na.ssl-images-amazon.com/images/I/81objtUow1L.jpg
I started with the following:
\begin{titlepage}
\incgraph[documentpaper,
width=\paperwidth,
height=\paperheight,
overlay={
\node[white] at (5, 10) {\fontsize{50}{60}\selectfont Infernal Dungeons};
}
]{img/cover.jpg} \end{titlepage}
This displays the cover in full page (woo-hoo) and draws some text, but it's unclear to me really how to get the rest done.
First, positioning of the text - I was trying to figure out how the coordinate system works for nodes. Every examples I see uses simple values (0,0) or (0,1), but if I use these most of my text disappears.
Second, how can I change the font for the title (and later subtitle) to one that matches the official projects (there are fonts available that mimic that)
And finally: how can I add additional images on top of the cover (most importantly the red diamomond).
Are these things possible through the tikz overlay I have currently?