Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. usepackage{atbegshi}
  2. usepackage{lipsum}
  3. usepackage{tikz}
  4. usepackage{listings}
  5.  
  6. AtBeginShipout{AtBeginShipoutAddToBox{%
  7. begin{tikzpicture}[remember picture, overlay,]
  8. node [draw, circle, color=gray, yshift=2cm] at (current page.south){textbf{LARGEthepage}};
  9. end{tikzpicture}%
  10. }}
  11.  
  12. pagestyle{empty}
  13.  
  14. lstset{ basicstyle=color{black}ttfamilysmall,
  15. frameround=tftf, frame=ltbr,}
  16.  
  17. begin{document}
  18. lipsum[1-4]
  19. begin{lstlisting}
  20. print ('hello worlds')
  21.  
  22. print ('hello worlds')
  23.  
  24. print ('hello worlds')
  25.  
  26. print ('hello worlds')
  27.  
  28. print ('hello worlds')
  29.  
  30. print ('hello worlds')
  31. end{lstlisting}
  32. lipsum
  33. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement