ShareLaTeX 中的页面背景

ShareLaTeX 中的页面背景

如何在 ShareLaTeX 中添加图像作为背景?

答案1

...就像在任何 LaTeX 环境中一样。这里有一个选项,使用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}

加星标的版本将内容放在当前页面仅有的。

相关内容