我设计了一个完全黑色背景的文档封面。请参阅 MWE 1:
\documentclass{article}
% PACKAGES LOADING
\usepackage{xcolor}
\pagenumbering{gobble}
\pagecolor[rgb]{0,0,0}
\color[rgb]{1,1,1}
\begin{document}
SOME FANCY TITLE
\end{document}
然后我将这个黑色页面引入到我的主要文档中,如下所示。参见 MWE 2:
\documentclass{scrbook}
\usepackage{pdfpages}
\usepackage{geometry}
\geometry{a4paper,textwidth=5.6in,hmarginratio=1:1,textheight=9.5in,vmarginratio=1:1,heightrounded}
\begin{document}
\includepdf[]{MWE 1.pdf}
\end{document}
这是(相当丑陋的)输出:
我的问题是:我怎样才能去除页面顶部和底部的白色条纹?通过评论geometry
设置或更改documentclass
文章,包含功能可以正常工作,白色条纹也消失了。但是,这两种方法对我来说都不是有效的。你会怎么做?
答案1
我刚刚尝试了上述评论中的建议,并且得到了。
\documentclass{scrbook}
\usepackage{pdfpages}
\usepackage{geometry}
\geometry{a4paper,textwidth=5.6in,hmarginratio=1:1,textheight=9.5in,vmarginratio=1:1,heightrounded}
\begin{document}
\pagecolor[rgb]{0,0,0}
\includepdf[]{MWE1.pdf}% no space in file name
\clearpage\nopagecolor
test
\end{document}
答案2
正如 Andreas Matthias 在评论中所说,问题在于\documentclass{scrbook}
是 A4 尺寸,而\documentclass{article}
是 letter 尺寸。确保两个文档的页面大小相同即可解决问题。请参阅 MWE 1:
\documentclass[a4paper]{article}
\usepackage{xcolor}
\pagenumbering{gobble}
\pagecolor[rgb]{0,0,0}
\color[rgb]{1,1,1}
\begin{document}
SOME FANCY TITLE
\end{document}
以及 MWE 2:
\documentclass[a4paper]{scrbook}
\usepackage{pdfpages}
\usepackage{geometry}
\geometry{a4paper,textwidth=5.6in,hmarginratio=1:1,textheight=9.5in,vmarginratio=1:1,heightrounded}
\begin{document}
\includepdf[]{MWE 1.pdf}
\end{document}
我们得到了期望的输出!