如何在随附的图片中添加水印\includegraphics
(或者其他方式,如果\includegraphics
不允许)?我不谈论文档范围的水印,或占用羊毛页面的水印,而只是在某些图像的右上角放置一个小图像。
例如,使用以下 MWE:
\documentclass[a4paper,12pt]{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{Main image}
\end{figure}
\end{document}
我尝试example-image-b
在右上角放入1cm×1cm的尺寸。
这可能吗?\includegraphics
或者我应该改变方法来做这件事?
答案1
你总是可以将某样东西打印在其他东西上。主要问题是要打印到右上角。一种方法是
\documentclass[a4paper,12pt]{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\raisebox{-\height}{\includegraphics[width=0.5\textwidth]{example-image-a}}%
\hspace{-1cm}%
\raisebox{-\height}{\includegraphics[width=1cm]{example-image-b}}
\caption{Main image}
\end{figure}
\end{document}