We Recommend

Introduction to Programming using SML Introduction to Programming using SML
Provides a thorough introduction to the principles of programming and program design using the Standard ML programming language. Emphasis is putting the theory of programming into practice.


Ballyhoo


Posted By

janetmck on 04/30/08


Tagged

image LaTeX


Versions (?)


Background image in LaTeX


Published in: LaTeX 


URL: http://kuscsik.blogspot.com/2008/03/how-to-background-image-in-latex.html

  1. # Add this code before \begin{document}
  2.  
  3. \usepackage{eso-pic}
  4. \newcommand\BackgroundPic{
  5. \put(0,0){
  6. \parbox[b][\paperheight]{\paperwidth}{%
  7. \vfill
  8. \centering
  9. \includegraphics[width=\paperwidth,height=\paperheight,
  10. keepaspectratio]{background.png}%
  11. \vfill
  12. }}}
  13.  
  14. # and this immediately after \begin{document} :
  15.  
  16. \AddToShipoutPicture{\BackgroundPic}

Report this snippet 

You need to login to post a comment.