XeTeXcan xelatex handle crop@invert option?

Information and discussion about XeTeX, an alternative for pdfTeX based on e-Tex
Post Reply
wcapio
Posts: 6
Joined: Wed Aug 04, 2010 7:25 pm

can xelatex handle crop@invert option?

Post by wcapio »

Hi folks,

I have tried a minimal example of the crop package in xelatex with the invert option (all text white and bg black). This does work on pdflatex and not on xelatex. I do get the pagenumber in white, but the text remains black. Any bypass?

Greets,
WC


\documentclass[a4paper, 12pt]{article} % to use crop, set to a5 or use geometry
\usepackage[dutch]{babel}
\usepackage{mdwlist}
\usepackage{color}
\usepackage[cam,a4,center, invert]{crop}

\begin{document}
test
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

can xelatex handle crop@invert option?

Post by frabjous »

Does it work for you just to change the colors manually, rather than use invert?

Code: Select all

\documentclass[a4paper, 12pt]{article} % to use crop, set to a5 or use geometry
\usepackage[dutch]{babel}
\usepackage{mdwlist}
\usepackage{color}
\usepackage[cam,a4,center]{crop}

\begin{document}
\pagecolor{black}\color{white}
test
\end{document}
Post Reply