纸张边框和 hbox 之间不需要的间隙

纸张边框和 hbox 之间不需要的间隙

我正在为我的论文创建标题页,我需要这个位于顶部边距旁边的红色矩形,但是以下代码会在框顶部和纸张边框之间产生(非常)小的间隙:

\documentclass[12pt]{article}

\usepackage{graphicx}
\usepackage[a4paper,
%           showframe,
%           showcrop,
            top=0mm,
            left=15mm,
            right=0mm]{geometry}

\begin{document}  
\begin{titlepage}

\mbox{}\hfill\hbox{\pdfliteral{0.64 0 0 rg}\vrule height4mm width128mm depth0cm\pdfliteral{0 g}}

\end{titlepage}
\end{document}

如果我将顶部边距设置为 0mm,为什么还会存在这个间隙?

相关内容