平均能量损失

平均能量损失

这个问题类似于未回答的如何在不干扰主垂直列表的情况下将某些内容放在页面上?但(非常轻微地)定义得更严格。

eso-pic我想使用和将图片放在页面背景中\AddToShipoutPictureBG*

现在,默认情况下不会输出该页面,除非该页面上确实有内容。

我希望它在页面为空时以及页面包含内容时显示,但事先不知道需要哪种情况。

我不能直接插入,\null因为这会弄乱主垂直列表,并且类似的东西\section会出现在页面顶部的错误位置。

我能做什么或者有什么解决方法吗?

平均能量损失

\documentclass{article}
\usepackage{eso-pic}
\usepackage{graphicx}
\begin{document}
\AddToShipoutPictureBG*{%
  \AtPageCenter{%
    \makebox(0,0){\includegraphics{example-image.pdf}}}}
% <- insert something that doesn't mess with vertical spacing but causes the
%    page to be output.
% <- possible further content (e.g., \section{...}) or possibly no content.
\end{document}

相关内容