On making a photo book (using the book document class) how to "block out" an area of the image, making only this area transparent/opaque, with the aim of fitting text on top in this area?
There is some documentation on how using tikz one can give the text a color background, but this is not the solution. Currently this is an MWE:
\documentclass[10pt]{book}
\usepackage{pdfpages,changepage,lipsum}
\usepackage[papersize={8.5in,8.5in}]{geometry}
\begin{document}
\begin{figure}[!th]
\includepdf[height=\paperheight,width=\paperwidth]{example.pdf} % (a square pdf)
\end{figure}
\vspace{6cm}
\begin{adjustwidth}{5cm}{}
\lipsum[1] % how to make the area of the image behind this text area transparent?
\end{adjustwidth}
\end{document}
tikznot a solution? It can deliver both transparent texts and backgrounds. – daleif Aug 06 '21 at 09:24