如何在 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}
加星标的版本将内容放在当前页面仅有的。