图书类的标题问题

图书类的标题问题

似乎我在使用book类的标题方面遇到了问题。在每一章中,当文本太长时,章节文本和节文本会合并。另外,我不知道如何将它们改为小写而不是大写。

我使用的包如下所示:

\documentclass[12pt,oneside]{book}
\usepackage[english]{babel} 
\usepackage{graphicx} 
\usepackage{natbib}
\usepackage{appendix}
\usepackage{microtype}
\usepackage[utf8]{inputenc}
\usepackage[english]{isodate}
\usepackage[parfill]{parskip} 
\usepackage[colorlinks,pagebackref,pdfpagelabels=true,plainpages=false]{hyperref} 
\usepackage{fancyhdr} 
\usepackage{makecell} 
\usepackage{amsthm} 
\usepackage{pdflscape} 
\usepackage{multirow} 
\usepackage{mdwlist} 

然后我把每个章节的内容写成这样:

\begin{document}
\input{title.tex}
\tableofcontents
\input{overview/overview.tex}
\input{background/background.tex}
\input{chapter1/chapter1.tex}
\end{document}

以下是背景中的一些代码:

\chapter{Introduction to Simulation}\label{part:background}

\section{A Simple Example}\label{sec:sim_example1} 

当然,中间还有内容。章节的第一页看起来不错,但章节的第二页产生了下面的文本,但却是混乱的。下面看起来好多了。

2.1. A SIMPLE EXAMPLEPART 2. INTRODUCTION TO SIMULATION

答案1

包裹花式高清加载后需要一些代码,以便准确定义标题中的内容。

在单页格式中,同时显示章节标题和节标题并不常见,因为页眉会太拥挤。您可能在某处有声明\pagestyle{fancy},否则设置将是标准,即在页眉上仅打印章节标题和页码:

2. 模拟简介                            4

如果您希望标题中包含章节标题和页码,那么

\usepackage{fancyhdr}
\pagestyle{fancy} % enable fancy page style
\renewcommand{\headrulewidth}{0pt} % comment if you want the rule
\fancyhf{} % clear header and footer
\fancyhead[L]{\rightmark} % section title on the left
\fancyhead[R]{\thepage}   % page number on the right

如果你想要章节标题,将第五行改为

\fancyhead[L]{\leftmark} % chapter title on the left

除了将章节标题放在两行之外,没有其他实用的方法可以使章节标题共存。

相关内容