标题页右侧带有彩色带

标题页右侧带有彩色带

我的文件中有此命令,它会在页面标题中从左到右创建一个彩色带,但限制在页面的 33%。我怎样才能在标题页的右侧添加类似的效果;因此,两侧都有两个带,中间是白色的。

\RequirePackage{eso-pic}

\AddToShipoutPictureBG*{\AtPageLowerLeft{%
  \color{Blue}\rule{.33\paperwidth}{\paperheight}}}

答案1

这是一个简单的解决方案:

\documentclass[12pt,svgnames]{book}
\usepackage{eso-pic}
\usepackage{geometry}
\usepackage[english]{babel}
% Title Page
\title{Colourful Bands\\ on titlepage}
\author{My Self}

\date{}
\AddToShipoutPictureBG*{\AtPageLowerLeft{%
  \color{Blue}\rule{.33\paperwidth}{\paperheight}
\hspace*{0.34\paperwidth}
  \color{DarkGreen}\rule{.33\paperwidth}{\paperheight}}}
\begin{document}
\newgeometry{margin = 0pt}
    \maketitle

\restoregeometry
\chapter{Chapter Title}
%
chapter text.

\end{document} 

在此处输入图片描述

相关内容