Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
  3. pagestyle{empty}
  4. usepackage{tikz}
  5.  
  6. begin{document}
  7. begin{tikzpicture}[overlay,remember picture]
  8. pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
  9. node at ([xshift=-paperwidth/6-1cm]current page.center){%
  10. includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
  11. begin{scope}[x={(image.south east)},y={(image.north west)}]
  12. fill[even odd rule,opacity=0.4]
  13. (0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
  14. (0,0) rectangle (1,1);
  15. end{scope}
  16. node at (current page.east){%
  17. includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
  18. end{tikzpicture}
  19. ~
  20. clearpage
  21. begin{tikzpicture}[overlay,remember picture]
  22. pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
  23. node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
  24. includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
  25. node at (current page.west){%
  26. includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
  27. end{tikzpicture}
  28. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement