我想在一个文档中为每个主题设置多个标题,我不想只合并两个或三个 pdf。我想从每个标题页开始显示不同的页眉。有一个问题我无法解决。
我刚刚用
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{titling}
\pagestyle{fancy}
\setlength{\parindent}{0pt}
\setlength{\parskip}{8pt}
\setlength{\topmargin}{-0.5cm}
\setlength{\droptitle}{-1.5in}
\fancyhead{}
\lhead{Personal Statement}
\rhead{name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\title{Personal Statement}
\author{name}
\date{Oct 25 2013}
\begin{document}
\maketitle
a lot of contents here
\title{Previous Projects and Future Plans}
\author{}
\date{}
\fancyhead{}
\lhead{Previous Projects and Future Plans}
\rhead{name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\maketitle
a lot of contents here
\end{document}
标题可以正确显示,但页眉不能。第一个标题下的最后一页显示了第二个页眉,我不知道为什么,因为我的\lhead{}
和\rhead{}
在第二个之后\title
。希望有人能帮忙。
我还想知道在一个文档中多次使用 \tile 和 \maketitle 是否正式?如果不正式,有没有更好的方法?有人能告诉我开头的排版宏(\setlength、\lhead 等)的作用范围吗?如果要将它们应用于整个文档内容,我不确定如何限制它们的范围。非常感谢。
答案1
您需要清除页面(或者更确切地说\cleardoublepage
)以获取正确的标题。
\documentclass{article}
\usepackage{fancyhdr}
\usepackage{blindtext}
\usepackage{showframe}
\pagestyle{fancy}
\fancyhead{}
\lhead{Personal Statement}
\rhead{name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\title{Personal Statement}
\author{name}
\date{Oct 25 2013}
\begin{document}
\maketitle
\blinddocument
\cleardoublepage%<- important
\title{Previous Projects and Future Plans}
\author{}
\date{}
\fancyhead{}
\lhead{Previous Projects and Future Plans}
\rhead{name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\maketitle
\blinddocument
\end{document}
但是查看文档的输出,似乎要设置由report
或book
类提供的章节标题:
\documentclass{report}
\usepackage{fancyhdr}
\usepackage{blindtext}
\usepackage{showframe}
\pagestyle{fancy}
\fancyhead{}
\rhead{name}
\lhead{\leftmark}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\title{Personal Statement}
\author{name}
\date{Oct 25 2013}
\begin{document}
\chapter{Personal Statement}
\blindtext[10]
\chapter{Previous Projects and Future Plans}
\blindtext[10]
\end{document}