在制作相册时(使用书籍文档类),如何“阻挡”图像的某个区域,仅使该区域透明/不透明,以便将文本放在该区域的顶部?
有一些关于如何使用的文档蒂克兹可以为文本添加颜色背景,但这不是解决方案。目前这是一个 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}