所以基本上我的学院要求我:
1) 用罗马数字对引言前的页码进行编号 --- 标题页不应编号
2)从简介开始,以阿拉伯数字编号——简介第一页不应编号
3)我的格式基本上是
封面
致谢
内容
图表目录
命名法
抽象的
介绍
章节
结果
结论和未来工作
相当复杂的问题。有人知道如何解决这个问题吗?
答案1
通过book
课程,您可以执行以下操作:
论文.tex
\documentclass{book}
\usepackage{geometry} %%% put packages you need here
\begin{document}
\begin{titlepage}
\vspace*{1in}
\Huge This is the title
\end{titlepage}
%%----------------------------------------------
\frontmatter
\include{acknowledgement}
\tableofcontents
\listoftables
\listoffigures
%%put nomeclture command here. I don't know the details of how you do it.
\include{abstract}
%%--------------------------------------
\mainmatter
\include{introduction}
\include{what} %% first chapter
\include{how} %% second chapter
\include{results}
\include{Conclusionandfuture}
\backmatter
%% like appendix if any comes here.
\end{document}
代表您的 sub-tex 文件的文件名。例如,您的\include{file name}
可能看起来像这样。我记得简介的第一页应该没有编号。file name
introduction.tex
引言.tex
\chapter{Introduction}\label{chap:intro}
\thispagestyle{empty} %%% make first page with no page number
%
Some text here and your introduction starts which has sections
%
\section{some section}
Some text again....
.
.
.
以及示例章节文件:
什么.tex
\chapter[What's this?]{What am I doing here?}\label{chap:what}
What are all these......
..
.
.
\section{Motivation}
Some text...
.
.
.
将所有这些.tex
文件放在同一个文件夹中并编译thesis.tex
文件。您可能更喜欢将子文件(what.tex、how.tex 等)放在子文件夹中,以便整洁,在这种情况下,您必须使用包含的文件夹\include{subfiles/what}
在哪里。和文件夹都位于同一个文件夹中。subfiles
what.tex
thesis.tex
subfiles