如何将左边距背景设置为灰色?

如何将左边距背景设置为灰色?

在 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} 

在此处输入图片描述

相关内容