\documentclass[12pt, titlepage,twoside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage{graphicx}
\usepackage{imakeidx}
\usepackage[a4paper, inner = 37.5 mm, outer = 17.5mm, top = 35mm, bottom = 35mm]{geometry}
\usepackage{setspace}
\spacing{1.3}
\usepackage{array}
\usepackage{mathabx}
\usepackage{babel,blindtext}
\usepackage{subcaption}
\usepackage{float}
\usepackage{lmodern,textcomp}
\usepackage[hidelinks]{hyperref}
\usepackage{fancyhdr}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{chngcntr}
\usepackage{adjustbox}
\usepackage{tikz}
\pagestyle{fancyplain}
\fancyhf{}
\fancyhf[OF]{\cfoot{}}
\fancyhf[EF]{\cfoot{}}
\fancyhf[REF,LOF]{\includegraphics[width = 5.11cm, height=1.35cm]{Image.png}}
\fancyhf[LEF,ROF]{\foot{\thepage}}
\begin{document}
\frontmatter
\chapter{Abstract}
\tableofcontents
\mainmatter
\chapter{introduction}
\end{document}
当我编译时,章节和目录的行有问题。
答案1
正确的fancyhdr
语法是
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\fancyhf[REF,LOF]{\includegraphics[width = 5.11cm, height=1.35cm]{example-image}}
\fancyhf[LEF,ROF]{\thepage}
或者
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\fancyfoot[RE,LO]{\includegraphics[width = 5.11cm, height=1.35cm]{example-image}}
\fancyfoot[LE,RO]{\thepage}
然后,图像位于章节页和普通文档页的内部页脚中,而页码位于外部页脚中。
可选参数中的字母含义为:H
页眉、F
页脚、E
偶数页、O
奇数页、L
左页、R
右页。
\fancyhf[H]{...}
与 的作用相同\fancyhead{...}
。
请注意,fancyplain
章节页面使用与其他普通页面相同的页面样式:页面样式fancyplain
。如果有区别,您可以使用例如。
\fancyhf[CH]{\fancyplain{plain}{other}}
补充说明:建议scrlayer-scrpage
在KOMA-Script文档中使用页眉和页脚包。
\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\ifoot*{\includegraphics[width = 5.11cm, height=1.35cm]{example-image}}
\ofoot*{\pagemark}
\chead[plain]{other}