我用
\pagecolor{black}
\color{white}
创建一个黑底白字的文档。
我使用
\pgfpagesdeclarelayout{boxed}
{
\edef\pgfpageoptionborder{0pt}
}
{
\pgfpagesphysicalpageoptions
{%
logical pages=1,%
}
\pgfpageslogicalpageoptions{1}
{
border code=\pgfsetlinewidth{2pt}\pgfstroke,%
border shrink=\pgfpageoptionborder,%
resized width=.95\pgfphysicalwidth,%
resized height=.95\pgfphysicalheight,%
center=\pgfpoint{.5\pgfphysicalwidth}{.5\pgfphysicalheight}%
}%
}
\pgfpagesuselayout{boxed}
或者
\thisfancypage{%
\setlength{\fboxsep}{2pt}\doublebox}{}
。
但我需要用白线作为边框,否则它们不会显示在黑色页面上。如何更改或设置边框线颜色?
答案1
像这样
\pagecolor{black}
\color{white}
\thisfancypage{%
\color{white}
\setlength{\fboxsep}{2pt}\doublebox}{}
答案2
\documentclass[12pt]{article}
\usepackage[letterpaper]{geometry}
\usepackage{eso-pic,xcolor,lipsum}
\pagecolor{white}
\AddToShipoutPictureBG{%
\AtTextLowerLeft{\color{black}%
\rule[-\footskip]{\textwidth}{\dimexpr\textheight+\footskip\relax}}}
\color{white}
\begin{document}
\lipsum
\end{document}