我对页眉的放置有疑问。据我所知,TeX 首先放置页眉,然后是正文,最后是页脚。因此,页眉位于正文下方,页脚位于文本上方。如果我想在正文中添加一个与页眉和页脚重叠的结构,则只有页脚仍然可见。页眉的内容位于结构后面。
我尝试了一些方法来解决这个问题,但目前还没有成功。
有没有办法将标题放在正文上方?
\documentclass{article}
\usepackage{lipsum}
\usepackage[skins, breakable]{tcolorbox}
\newtcolorbox{example}[1]
{enhanced,breakable,sharp corners,colframe=white!90!red,colback=white!90!red,#1,overlay={\draw[white!90!red,line width=55pt]([yshift=-25pt]frame.south east)-- ([xshift=-25pt,yshift=-25pt]frame.south west)--([xshift=-25pt]frame.north west)--(frame.north east);} }
%Header & Footer
\usepackage[pagestyles]{titlesec}
\renewpagestyle{plain}[]{\sethead {This is the head}{partially}{visible}
\setfoot{This is the foot}{still}{visible}
}
\pagestyle{plain}
\begin{document}
\begin{example}{}
\lipsum[1-5]
\end{example}
\end{document}
我尝试过将页脚用作页眉,将 \footskip 减小为负值,但不起作用。只有当值为正时,它才似乎有效。有没有办法让它发挥作用,即使它非常规?我不需要整个文档中的页脚。