在 LaTeX 中,如何设置纸张的背景颜色,使其左边距为灰色,而纸张的中心和右侧部分为背景白色?
答案1
eso-pic
如果使用相关参数则非常简单:
\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage{eso-pic}
\AddToShipoutPictureBG{\color{Gainsboro!40!Lavender}\AtPageLowerLeft{\rule{\dimexpr 1in + \oddsidemargin-\marginparsep\relax}{\paperheight}}}
\usepackage{lipsum}
\title{Colouring Left Margin}
\author{Wassily Kandinsky}
\begin{document}
\marginpar{Some text}
\lipsum[1-4]
\marginpar{Some text}
\lipsum[5-8]
\end{document}