是否可以在物理页面上打印的八页中为单个逻辑页面着色?
\documentclass[a4paper,fontsize=23pt]{scrreprt}
\usepackage[margin=0.75in,bottom=0.3in,footskip=2em,includefoot]{geometry}
\usepackage{lipsum}
\usepackage{pocketmod}
\title{A PocketMod Booklet}
\author{R. Noureddine}
\begin{document}
\maketitle
\lipsum[1-12]
\end{document}
答案1
我没有pocketmod
包,但是这个可以为单页着色。
\documentclass[a4paper,fontsize=23pt]{scrreprt}
\usepackage[margin=0.75in,bottom=0.3in,footskip=2em,includefoot]{geometry}
\usepackage{lipsum}
\usepackage{pagecolor}
\usepackage{afterpage}
%\usepackage{pocketmod}
\title{A PocketMod Booklet}
\author{R. Noureddine}
\begin{document}
\maketitle
\lipsum[1-3]
\newpagecolor{yellow}
\afterpage{\restorepagecolor}
\lipsum[4-12]
\end{document}
答案2
如果您将以下代码添加到相关页面,则可以使用 来“着色”页面。根据文本中的位置,它可能会覆盖或停留在文本后面。您将需要absolute positioning
中的库。tikz
positioning
tikz
\begin{tikzpicture}[remember picture,overlay]
\fill[red,opacity=0.2] (current page.south west) rectangle (current page.north east);
\end{tikzpicture}
这wallpaper
包允许为当前页面设置背景(图像),使用诸如 之类的代码\ThisCenterWallPaper
。
任何一个都应该引用您的逻辑页面;根据您在物理页面上如何对页面进行分组,您可能必须调整您的代码。