书籍和回忆录类章节样式中不同位置的不同图像

书籍和回忆录类章节样式中不同位置的不同图像

我正在研究章节样式:关联(pdf)

我想在每一章的不同位置使用不同的图像,有时甚至挂在标题行(文本之后),但标题行应始终保持在页面上的相同高度

如何定义可以这样控制的章节样式?对于回忆录文檔類別。

(我正在写的书是类,但我想在回忆录王国中的其他一些项目中使用它。)

答案1

按照 daleif 的建议,使用包\AddToShipoutPicture*中的eso-pic内容我们根本不需要修改章节样式:

\documentclass{book}

\usepackage{lipsum}
\usepackage[pdftex]{graphicx}
\graphicspath{{./src-images/}}
\usepackage{eso-pic}

\begin{document}

\chapter{Hello World}
\AddToShipoutPicture*{%
  % By default, eso-pic's zero coordinate is in the lower left corner
  \put(\LenToUnit{3.5in},\LenToUnit{5.5in}){%
    \includegraphics[height=25mm,keepaspectratio]{leaf.png}%
  }
}

\lipsum

\end{document}

相关内容