I am trying to make a letterhead using two different logos on a page using latex. I am using the following codes.
\ThisCenterWallPaper{0.3}{logo.png}
\setlength{\wpXoffset}{-6.1cm}
\setlength{\wpYoffset}{12.07cm}
\LRCornerWallPaper{0.3}{LRsealoffset.png}
The idea is to get the two logos to appear on the first page and the second logo to repeat on the subsequent pages. I have gotten this to work so far and I am able to adjust the position of the first logo using \setlength{\wpXoffset} command. However, I am unable to change the position of the second logo. Using the \setlength{\wpXoffset} below the \LRCornerWallPaper does not seem to work. Do you have any ideas or suggestions?
Thanks.


? "
– Harry Apr 03 '15 at 15:36\AddThispageHookis part of theeverypagepackage. Did you place\usepackage{everypage}in your preamble? – Steven B. Segletes Apr 03 '15 at 15:39? "
– Harry Apr 03 '15 at 15:44\usepackage{graphicx}in your code, but depending on what you removed to make room for mine, you want to insure that it is present. – Steven B. Segletes Apr 03 '15 at 15:46lipsum, it may seem like an important part of the solution, when in fact it is just filler text. Glad you resolved it! Welcome to the site. – Steven B. Segletes Apr 03 '15 at 15:55\atxymacro will place "anything", as you perhaps discovered. Thus, passing a\parboxinstead of an\includegraphicswould do the trick. – Steven B. Segletes Apr 24 '15 at 21:17everypagemacros\AddThispageHookand\AddEverypageHookwill affect either one or all the subsequent pages, respectively. Those two macros get embodied in my\atxyand\ateveryxymacros which I have provided. So if you don't want something on every page, use\atxy. If you want something on every page after p.7, then invoke\ateveryxyon p.8. Does this help? – Steven B. Segletes Jun 27 '18 at 10:27\ateveryxyshow up on every page includng the title page where I places\atxyimages – Stücke Jun 27 '18 at 11:12\ateveryxyso that the macro can be redefined to\relaxwhen you don't want it on the page:\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] \def\myepcmd{\raisebox{-\height}{\includegraphics[width=2in]{example-image-B}}} \ateveryxy{3.25in}{0in}{\myepcmd} \lipsum[7-12] \let\myepcmd\relax \lipsum[13-19] \end{document}– Steven B. Segletes Jun 27 '18 at 11:28\myepcmd(or whatever you are calling it) to something else (for example, an\includegraphics), with\renewcommandor\def. – Steven B. Segletes Jun 27 '18 at 12:00\atxyor\ateveryxyinvocation should never affect pages that were typeset prior to its invocation. – Steven B. Segletes Jun 27 '18 at 12:51\includes's in the beginning – Stücke Jun 27 '18 at 13:04