插入的 PDF 页面上的页码不显示

插入的 PDF 页面上的页码不显示

代码

考虑以下 MWE:

\documentclass{article}

\usepackage{pdfpages}

\begin{document}

\thispagestyle{empty}
\AddToShipoutPictureBG*{%
  \AtPageLowerLeft{%
    \raisebox{\dimexpr0.5\paperheight-0.5\height}{%
      \makebox[0.92\paperwidth][r]{%
        \rotatebox{90}{\thepage}
      }
    }
  }
}
\includepdf[
  pages = -,
  landscape = true
]{inserted-page.pdf}

\end{document}

输出

问题

从屏幕截图中可以看出,页码确实排版在页面上,但看起来是白色排版(因为如果我不突出显示它,我就看不到它)。我的代码有什么问题?我该如何修复它?

附录

lualatex如果它有任何重要性,我会编译使用它。

另外,我对其他插入的页面使用了等效代码,并且页码的显示与我预期的一致,所以我有点困惑。

相关内容