Advertisement
Guest User

Untitled

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