답변1
불투명도를 변경하려면첫 번째페이지와 비교하면문서의 나머지 부분, 다음 설정을 사용할 수 있습니다.
\documentclass{article}
\usepackage{lipsum}
\usepackage[pages=all]{background}
% All page background setting
\backgroundsetup{%
contents = \includegraphics{example-image},
opacity = 0.05
}
\AddToHookNext{shipout/after}{%
% First page background setting
\backgroundsetup{%
contents = \includegraphics{example-image},
opacity = 0.5
}%
}
\begin{document}
% Your document...
\lipsum\lipsum\lipsum\lipsum
\end{document}
아이디어는 모든 페이지의 배경을 설정하고 페이지/배송 후크를 삽입하여 배경 설정을 업데이트하는 것입니다.단지첫 번째 페이지의 경우.