我想要实现这样的文字效果:
它是文字与影子之间的“缝隙”。
我知道我必须使用两个图层来创建阴影和文字。但我不知道如何剪切阴影图层(如果使用背景图像,则在文字和阴影之间添加一个使用白色的图层不会有帮助。)
这就是我创建“文字层”和“阴影层”的方法:
\documentclass[12pt]{article}
\usepackage{tikz}
\usepackage{fontspec}
\begin{document}
\begin{tikzpicture}[remember picture, overlay]
\node [inner sep=0pt, xshift=0.78cm, yshift=7.48cm, anchor=south] at (current page.center) {\fontspec{Arial Bold}\color{gray}Effect};
%A "clipping layer" here
\node [inner sep=0pt, xshift=0.8cm, yshift=7.5cm, anchor=south] at (current page.center) {\fontspec{Arial Bold}\color{black}Effect};
\end{tikzpicture}
\end{document}
有人可以帮忙剪辑部分吗?