0

How can I add an image as background in ShareLaTeX?

CarLaTeX
  • 62,716
Kunal
  • 1

1 Answers1

2

...just like you would in any LaTeX environment. Here's an option using eso-pic:

enter image description here

\documentclass{article}

\usepackage{eso-pic,graphicx,lipsum}

\begin{document}

\AddToShipoutPictureBG*{
  \AtPageLowerLeft{%
    \includegraphics[width = \paperwidth, height = \paperheight]{example-image}%
  }%
}

\lipsum% Your document

\end{document}

The starred version places content in the background on the current page only.

Werner
  • 603,163