comparison thesis/aux/mitthesis/README.text @ 460:763d13f77e03

merge in laptop changes.
author Robert McIntyre <rlm@mit.edu>
date Thu, 27 Mar 2014 17:57:01 -0400
parents 6b0f77df0e53
children
comparison
equal deleted inserted replaced
459:a86555b02916 460:763d13f77e03
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