We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from https://tex.stackexchange.com/a/625313/2388
The \let command is faulty in \pgf@sys@pdf@install@mask:
\let
\pgf@sys@pdf@install@mask
\documentclass{article} \usepackage{tikz} \usetikzlibrary{shadows.blur} \makeatletter \def\pgf@sys@pdf@install@mask#1{% \pgfutil@addpdfresource@extgs{% /pgfsmask\csname pgfsmaskxform@#1\endcsname\space << /SMask << /S /Luminosity /G @pgfsmask\csname pgfsmaskxform@#1\endcsname >> >>}%<< %\expandafter\let\csname pgfsmask@#1\endcsname\expandafter\csname pgfsmaskxform@#1\endcsname%<---wrong \expandafter\let\csname pgfsmask@#1\expandafter\endcsname\csname pgfsmaskxform@#1\endcsname% } \makeatother \begin{document} \tikz{\node[draw, fill=white, blur shadow] {A};} % Writes 17 [in nullfont] % \tikz{\node[draw, fill=white, blur shadow] {B};} % Writes 18 [in nullfont] % \tikz{\node[draw, fill=white, blur shadow] {C};} % Writes 19 [in nullfont] \end{document}
The text was updated successfully, but these errors were encountered:
fix(driver): \let for two csnames pgf-tikz#1088
6b388b1
Co-authored-by: Ulrike Fischer <fischer@troubleshooting-tex.de> Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
Merge pull request #1089 from muzimuzhi/dvipdfmx
6b038f2
fix(driver): `\let` for two csnames #1088
Successfully merging a pull request may close this issue.
from https://tex.stackexchange.com/a/625313/2388
The
\let
command is faulty in\pgf@sys@pdf@install@mask
:The text was updated successfully, but these errors were encountered: