-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.text
34 lines (20 loc) · 866 Bytes
/
README.text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
This file includes the basic commands you will need to use within each
chapter of your thesis.
The file chap1.tex is a sample first chapter. To get started, you may
just want to replace the text and commands in that file as needed. In
general though, for each new chapter you want to do the following:
o Make sure the name has the extension .tex . Otherwise, you
can call it anything you want. For ease of use, all the
examples use chap1, chap2, etc.
o Add a line to the file main.tex that reads:
\include{yourfilename}
This should not include the .tex extension, because latex
assumes that is there.
Basic syntax:
o The first line of each chapter should be:
\chapter{Chapter Title}
o To start a new section (labeled chap#.sec# -- as in 1.1,
1.2, etc):
\section{Section Heading}
You can also include subsections:
\subsection{Heading}