为何插入目录后,目录和正文页码都是1?

2019-09-27 10:34发布

插入目录后,使用xelatex编译,结果目录和正文的页码都是1,该如何让目录页码变为其他? \documentclass{ctexrep} \usepackage{cleveref} \title{...

插入目录后,使用xelatex编译,结果目录和正文的页码都是1,该如何让目录页码变为其他? \documentclass{ctexrep} \usepackage{cleveref} \title{Poisson's equation in 1D} \author{William} \date{\today} \begin{document} \maketitle \tableofcontents \begin{abstract} In this lecture, we consider the numerical method to the Poisson's equation using FDM and FEM. \end{abstract} \chapter{Finite Difference Method (FDM)} Consider the Poisson's equation in 1 dimension as follows: \end{document}
3条回答
论坛 github.com/C
2019-09-27 11:00 .采纳回答
### 根据你的提问 1. ctexrep 文档类基于 report 文档类。 1. 在 report 文档类中,设计上的使用顺序是:标题、摘要、目录、正文 1. 为此,`\maketitle` 和 `abstract` 环境都具有「当前页不显示页码,下一页的页码从 1 开始」的功能 所以, 1. 如果把你例子中的顺序调整为先摘要再目录,就正常了 1. 如果希望保持例子中的顺序,就需要重定义 `abstract` 环境 ### 根据你在其他回答里的评论 > 希望正文开始是页码1,目录开始是页码罗马字母 1. 建议使用 `ctexbook`/`book` 文档类,然后用 https://latexref.xyz Sec. 6.7 介绍的命令。 1. 也可以用底层的命令 `\pagenumbering`,参考 https://latexref.xyz Sec. 18.2 ```tex % 用 \pagenumbering 的例子 \documentclass{ctexrep} \title{Poisson’s equation in 1D} \author{William} \date{\today} \begin{document} \maketitle \pagenumbering{roman} \tableofcontents \begin{abstract} In this lecture, we consider the numerical method to the Poisson’s equation using FDM and FEM. \end{abstract} \pagenumbering{arabic} \chapter{Finite Difference Method (FDM)} Consider the Poisson’s equation in 1 dimension as follows: \end{document} ```

一周热门 更多>

相关问答