是否可以将目录紧跟在标题页之后 \documentclass{book}
?
换句话说:打印\title{}
和\author{}
(最好不是\date{}
),并且在同一页的正下方,\tableofcontents
没有分页符,也没有页码。
如果有奖励积分
- (a)文本内容,即第一章,从第 3 页开始,因为章节应该从奇数页开始;
- (b) 第二页可以选择包含版权声明等,但如果没有,则该页面上根本不应打印任何内容。
MWE 如下。抱歉,它不是最小的。(请温柔一点。我很难让 LaTeX 做我想做的事情。)
\documentclass[notitlepage,draft]{book}
\usepackage{multicol}
\usepackage{fontspec}
\usepackage[fontsize=10pt,baseline=12pt]{grid}
\setlength{\columnsep}{1.5em}
\usepackage[top=2cm, left=3cm,right=2cm]{geometry}
\setmainfont{Alegreya} % yes, you can print in non-default fonts!
\title{This Is The Title\\of the\\Adequate Book of \LaTeX}
\author{MacIntyre W. Hovermale, Jr., Esq.}
\usepackage{titling} % remove date and spacing around date:
\predate{}
\date{}
\postdate{}
\usepackage{lipsum}
\usepackage{fancyhdr} %% controls headers/footers, page numbers
\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyhead[LE,RO]{\thepage}
\fancyhead[CE]{TEST~~~EVEN~~~PAGE~~~HEADER}
\fancyhead[CO]{\chaptername}
\usepackage[ragged,hang]{footmisc}
\usepackage[colorlinks,linktoc=all]{hyperref} %% make contents entries clickable
\begin{document}
\maketitle
\clearpage{\pagestyle{empty}\cleardoublepage} %% no header on blank left page; will clearing get TOC to start immediately? ans: no, it just restores lopsided header on blank p. 2.
\tableofcontents
%%%%% CHAPTER ONE %%%%%
\chapter*{chapter one}
\label{ch:Chapter_One}
\addcontentsline{toc}{chapter}{\protect\numberline{}Chapter one} %% add unnumbered chap. to TOC
\lipsum[1-2]
\end{document}