我正在用这个OverLeaf 论文模板我试图在页面上放置背景图像来表明一个新章节(放在右页),但也放在它之前的空白左页上。
我有两张这样的图像,并且可以通过在命令后放置 Tikz 命令来放置正确的图像\chapter
:
(\tikz[remember picture,overlay] \node[opacity=0.2,inner sep=0pt] at (current page.center){\includegraphics[width=\paperwidth,height=\paperheight]{Chapter_background_right.png}};)
我如何将图像放在左边的空白页上?\chapter
我相信这个空白页是通过调用命令自动生成的。
我可以通过在\DeclareDocumentCommand\cleardoublepage{}...
声明中添加 Tikz 命令来做到这一点,但它也会将图像添加到附录标题等中,而这是我所不想要的。
例如,有没有办法将 Tikz 图像放在上一页?
编辑:目前,我删除了openany
文档类中的任何自动化功能,并手动将章节页面和图像页面放在每个章节的前面。我将这个问题留在这里,但如果您只有几个章节,手动方式可能是一种更简单的解决方案。
答案1
这就是你需要的吗?
\documentclass{report}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{eso-pic}
\title{Sections and Chapters}
\author{Overleaf}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\chapter{An Introduction to Lua\TeX}
\AddToShipoutPictureBG*{\includegraphics[width=\paperwidth,height=\paperheight]{example-image-duck}}
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
\newpage
\Huge{IT IS CLEAR PAGE}
\newpage
\chapter{Lua\TeX: Background and history}
\AddToShipoutPictureBG*{\includegraphics[width=\paperwidth,height=\paperheight]{example-image-a}}
\section{Introduction}
Lua\TeX{} is, in \TeX{} terms, “the new kid on the block” despite having been in active development for over 10 years.
\end{document}