comparison thesis/mitthesis/README.text @ 421:c2c28c3e27c4

get mit thesis template file.
author Robert McIntyre <rlm@mit.edu>
date Fri, 21 Mar 2014 00:08:49 -0400
parents
children
comparison
equal deleted inserted replaced
420:7f3581dc58ff 421:c2c28c3e27c4
1 This file includes the basic commands you will need to use within each
2 chapter of your thesis.
3
4 The file chap1.tex is a sample first chapter. To get started, you may
5 just want to replace the text and commands in that file as needed. In
6 general though, for each new chapter you want to do the following:
7
8 o Make sure the name has the extension .tex . Otherwise, you
9 can call it anything you want. For ease of use, all the
10 examples use chap1, chap2, etc.
11
12 o Add a line to the file main.tex that reads:
13
14 \include{yourfilename}
15
16 This should not include the .tex extension, because latex
17 assumes that is there.
18
19 Basic syntax:
20
21 o The first line of each chapter should be:
22
23 \chapter{Chapter Title}
24
25 o To start a new section (labeled chap#.sec# -- as in 1.1,
26 1.2, etc):
27
28 \section{Section Heading}
29
30 You can also include subsections:
31
32 \subsection{Heading}
33
34