Page background in ShareLaTeX

Page background in ShareLaTeX

How can I add an image as background in ShareLaTeX?

답변1

...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.

관련 정보