ドキュメント画像またはカスタムボックス上の透かし

ドキュメント画像またはカスタムボックス上の透かし

透かしを追加しました\backgroundsetup

\backgroundsetup{
angle=45,
scale=1,contents={\includegraphics[allpages,
    ]{water_mark.png}}}

\usepackage[most]{tcolorbox}\tcbset{colback=blue!8!white,colframe=blue!25!white, boxrule=0pt, left=10pt,right=10pt,top=10pt,bottom=10pt, arc=0pt,outer arc=0pt}

\begin{tcolorbox}\begin{verbatim} texts in box\end{verbatim} \end{tcolorbox}

私が達成したことは次のとおりです:

これが私が達成したことだ

すべてのページに透かしが表示されるのはうれしいのですが、一部のページに画像やカスタム ボックスがあり、そのようなページでは透かしが画像やボックスの下に表示されるという問題があります。透かしは画像またはボックスの上に表示したいです。

答え1

backgroundパッケージを使用する代わりに、 を使用することもできますxwatermark

このコマンドの星印 (*) バリアントは、\newwatermark透かしを背景ではなく前景に配置します。

\documentclass{article}
\usepackage[printwatermark]{xwatermark}

\usepackage[most]{tcolorbox}
\tcbset{colback=blue!8!white,colframe=blue!25!white, boxrule=0pt, left=10pt,right=10pt,top=10pt,bottom=10pt, arc=0pt,outer arc=0pt}

\usepackage{mwe}% for test purpose only, you don't need to use this in your document

\begin{document}

\newwatermark*[angle=45,scale=1,xpos=0,ypos=40, allpages]{\includegraphics[height=2cm,width=10cm]{example-image}}% put your image here with the correct height and width

\section{An example of section}

\blindtext

\begin{tcolorbox}
\begin{verbatim} 
texts in box
\end{verbatim} 
\end{tcolorbox}

\blindtext
\newpage
\blindtext
\end{document}

ここに画像の説明を入力してください

関連情報