我希望项目中的每个页面上的标题都带有图片,但它仅显示在有章节的网站上

我希望项目中的每个页面上的标题都带有图片,但它仅显示在有章节的网站上

我的代码:

\documentclass[headwidth=page,a4paper,12pt]{scrreprt}
\usepackage{graphicx} 
\usepackage[automark]{scrlayer-scrpage} 
\setlength{\headheight}{75pt}
\usepackage{blindtext} 

\chead[{\includegraphics[width=\paperwidth]{img/abc.png}}]{}

\begin{document}
\chapter{Titel}
\begin{normalsize}
\blindtext[3]
\blindtext[3]
\end{normalsize}
\chapter{Titel}
\begin{normalsize}
\end{normalsize}
\end{document}

此示例在网站 1 和 3 上显示了我的标题,但在网站 2 上没有显示。

答案1

默认情况下,章节页面使用页面样式,而MWE 中的plain其他页面使用。可选参数仅将图片放在章节页面等页面上。要为两种页面样式设置图片,请重复强制参数中的代码,或者最好使用带星号的版本:scrheadings\cheadplain\chead

\chead*{\includegraphics[width=\paperwidth]{img/abc.png}}

例子:

\documentclass[headwidth=page,a4paper,12pt,headlines=4.25]{scrreprt}
\usepackage{graphicx} 
\usepackage[automark]{scrlayer-scrpage} 
\setlength{\headheight}{75pt}
\usepackage{blindtext} 

\chead*{\includegraphics[width=\paperwidth,height=4\baselineskip]{example-image}}

\begin{document}
\chapter{Titel}
\begin{normalsize}
\blindtext[3]
\blindtext[3]
\end{normalsize}
\chapter{Titel}
\begin{normalsize}
\end{normalsize}
\end{document}

结果:

在此处输入图片描述

相关内容