在书籍类中配置页面标题

在书籍类中配置页面标题

我正在撰写论文,但在格式化标题时遇到了麻烦。

最小的工作示例是:

\documentclass[a4paper,11pt,oneside]{book}
\usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}

\begin{document}

\chapter{Introduction}  

Citation here

\newpage

Bla bla

\chapter*{Conclusion}  

\end{document}

我的输出标题如下所示: 在此处输入图片描述

但我需要这个,即使用这样的字体设置和以下规则: 在此处输入图片描述

答案1

这是一个选项fancyhdr

\documentclass[a4paper,11pt,oneside]{book}
\usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
\usepackage{lipsum}
\usepackage{fancyhdr}
    \fancypagestyle{plain}{\fancyhf{}\renewcommand{\headrulewidth}{0pt}} % To clear page numbers from footer, and header line at the start of every chapter

    \pagestyle{fancy}
    \fancyhf{}% Clear header/footer
    \fancyhead[L]{\nouppercase\leftmark}
    \fancyhead[R]{\thepage}

\begin{document}
    \chapter{Introduction}  
    \lipsum[1-15]
    \chapter{Introduction}  
    \lipsum[1-15]
\end{document}

F

s

相关内容