I find that Adobe Acrobat (on Windows 11 and on Android) does not correctly render transparency produced via transparent.sty and PDFLaTeX. Specifically, overlapping text comes out as a uniform gray.
Here's an example:
\documentclass{article}
\usepackage{transparent}
\begin{document}
\vbox{%
\hbox{\texttransparent{0.5}{hello}}%
\vskip-\baselineskip
\hbox{\texttransparent{0.5}{world}}%
}%
\end{document}
Acrobat screenshot:
Chrome screenshot (similar in most other PDF viewers I've tried):
I want to achieve the latter behavior, where overlapping text appears darker. Maybe Acrobat is using the wrong blend mode for transparency? (It does seem to blend properly with a background \pagecolor.) Is there a way to fix this? Perhaps one of the other ways to specify transparency in LaTeX would do better?




\begin{transparencygroup}working for my purposes... Oops, that's LuaTeX only I guess. I'd like to avoid the overhead of TikZ if possible. – edemaine Mar 30 '23 at 16:06