我想在 Overleaf 中制作图像背景,但我不知道该怎么做。
我希望能够在其上书写,就像可以使用 更改背景颜色一样\pagecolor{color}
,我也想更改文本的颜色以便在输出中变为白色,但我不想\textcolor{white}{}
每次写东西时都使用它。
有没有办法让白色成为标准颜色?
答案1
使用eso-pic
和\color
:
\documentclass{article}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{eso-pic}
\usepackage{xcolor}
\AddToShipoutPictureBG{\includegraphics[width=\paperwidth,height=\paperheight]{example-image}}
\begin{document}\color{white}
It is not clear if you would like only one page with background or more.
\newpage
This example shows all pages with background.
\end{document}