Guest User

Untitled

a guest
Jul 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. documentclass[margin=1cm]{standalone}
  2.  
  3. usepackage{tikz,pgfkeys}
  4. usetikzlibrary{calc}
  5.  
  6. pgfkeys{
  7. /absolutenode/.is family, /absolutenode,
  8. default/.style = {},
  9. position/.store in = position,
  10. }
  11.  
  12. newcommandabsolutenode[2][]{%
  13. pgfkeys{/absolutenode, default, #1}%
  14. tikz[remember picture,overlay,x=paperwidth,y=paperheight]{%
  15. node[anchor=center,inner sep=0pt] at ($(current page.south west)+position$) {#2};
  16. }
  17. }
  18.  
  19. begin{document}
  20. absolutenode[position=(0.5,0.5)]{Test}
  21. end{document}
Add Comment
Please, Sign In to add comment