Page LayoutTint pages

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
nifty
Posts: 16
Joined: Sat Oct 09, 2010 4:24 pm

Tint pages

Post by nifty »

I have a book which needs the Answer section pages to have a tint. The book is 8x10 and the tint must bleed at least 9pts from the trim. Is there any way to create this tint for just certain pages? Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Tint pages

Post by frabjous »

You could try the background package. E.g., here is text put on top of a yellow background 7.5 x 9.5 inches.

Code: Select all

\documentclass[12pt]{article}
\usepackage[all,center]{background}
\SetBgColor{yellow}
\SetBgContents{\rule{7.5in}{9.5in}}
\SetBgAngle{0}
\SetBgScale{1}
\usepackage{lipsum}% filler text
\begin{document}
\lipsum[1-50]% filler text
\end{document}

nifty
Posts: 16
Joined: Sat Oct 09, 2010 4:24 pm

Re: Tint pages

Post by nifty »

This would be exactly what I'd like except...it requires the Tikz package. I'm using Textures on a Mac and I've never been able to get this package to work.

A second option would be to use Illustrator to create a bar that goes down the side of verso and recto pages. Is there a package that allows me to place art relative to the top-left and top-right of a page?
Post Reply