我正在尝试使用乳胶在一页上制作带有两个不同徽标的信头。我使用以下代码。
\ThisCenterWallPaper{0.3}{logo.png}
\setlength{\wpXoffset}{-6.1cm}
\setlength{\wpYoffset}{12.07cm}
\LRCornerWallPaper{0.3}{LRsealoffset.png}
这个想法是让两个徽标出现在第一页上,第二个徽标在后续页面上重复出现。到目前为止,我已经实现了这个功能,我可以使用\setlength{\wpXoffset}
命令调整第一个徽标的位置。但是,我无法更改第二个徽标的位置。使用\setlength{\wpXoffset}
下面的方法\LRCornerWallPaper
似乎不起作用。你有什么想法或建议吗?
谢谢。
答案1
根据我的回答,使用不同的方法有哪些方法可以将内容绝对定位在页面上?,我介绍\atxy{x-pos}{y-pos}{content}
在当前页面的指定位置放置某些内容,然后\ateveryxy{x-pos}{y-pos}{content}
对从调用开始的所有页面执行相同的操作。
\documentclass{article}
\usepackage{everypage}
\usepackage{lipsum,graphicx}
% THESE ARE LaTeX DEFAULTS; CAN CHANGE IF NEEDED.
\def\PageTopMargin{1in}
\def\PageLeftMargin{1in}
\newcommand\atxy[3]{%
\AddThispageHook{\smash{\hspace*{\dimexpr-\PageLeftMargin-\hoffset+#1\relax}%
\raisebox{\dimexpr\PageTopMargin+\voffset-#2\relax}{#3}}}}
\newcommand\ateveryxy[3]{%
\AddEverypageHook{\smash{\hspace*{\dimexpr-\PageLeftMargin-\hoffset+#1\relax}%
\raisebox{\dimexpr\PageTopMargin+\voffset-#2\relax}{#3}}}}
% VERIFIED THAT SETTING \hoffset AND \voffset DO NOT BREAK SOLUTION.
%\hoffset=0.4in
%\voffset=0.2in
\begin{document}
\atxy{0in}{0in}{\raisebox{-\height}{\includegraphics[width=2in]{example-image-A}}}
\atxy{6.5in}{0in}{\raisebox{-\height}{\includegraphics[width=2in]{example-image-B}}}
\lipsum[1-6]
\ateveryxy{3.25in}{0in}{\raisebox{-\height}{\includegraphics[width=2in]{example-image-B}}}
\lipsum[7-19]
\end{document}
第 1 页
后续页面