How can I add an image as background in ShareLaTeX?
Asked
Active
Viewed 157 times
0
-
Welcome. Does How to use background image in LaTeX? works with sharelatex? – Bobyandbob Feb 20 '18 at 08:02
1 Answers
2
...just like you would in any LaTeX environment. Here's an option using eso-pic:
\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
