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}
XeTeX ⇒ can xelatex handle crop@invert option?
can xelatex handle crop@invert option?
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}