Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. documentclass{beamer}
  2. usepackage{mwe} % example images
  3. usepackage{lipsum} % example text
  4.  
  5. usepackage{tikz}
  6. usetikzlibrary{calc}
  7. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  8. % absolute positioning of typeset material
  9. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  10. newcommand{placetextbox}[4][center]{%
  11. % [#1]: box anchor: center (default) |
  12. % south west | west | north west | north |
  13. % north east | east | south east | south |
  14. % mid west | mid | mid east |
  15. % base west | base | base east
  16. % #2: horizontal position (fraction of page width)
  17. % #3: vertical position (fraction of page height)
  18. % #4: content
  19. %
  20. tikz[remember picture,overlay,x=paperwidth,y=paperheight]{%
  21. node[anchor=#1,inner sep=0pt]
  22. at ($(current page.south west)+(#2,#3)$) {#4};
  23. }%
  24. }
  25. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  26.  
  27. begin{document}
  28. begin{frame}
  29. placetextbox[north west]{0}{1}{includegraphics[width=0.6paperwidth]{example-image-a}}
  30. %normal text
  31. lipsum[1]
  32. placetextbox[south east]{1}{0}{includegraphics[width=0.6paperwidth]{example-image-b}}
  33. end{frame}
  34. end{document}
Add Comment
Please, Sign In to add comment