砂纸般的页面背景

砂纸般的页面背景

我怎样才能像本例一样为文档页面添加背景?

在此处输入图片描述

原文来源:http://www.tsengbooks.com/images/6176s.pdf

答案1

只需抓住一些具有适当大小的图片并使用该background包将其插入到文档的背景中:

\documentclass{article}
\usepackage{background}
\backgroundsetup{
    angle=0,
    scale=1,
    contents={\includegraphics[width=\paperwidth, height=\paperheight]{paper-bg}}
}

\usepackage{lipsum} % to print some random text

\begin{document}

\lipsum

\end{document}

在此处输入图片描述

(图片来源:Unsplash/Olga Thelavart

相关内容