rlm@421: This file explains the options available to you for editting the file rlm@421: main.tex. rlm@421: rlm@421: The commands in the this file allow you to specify options such as rlm@421: spacing, double-sided printing, a draft copy, etc. By default, 12pt rlm@421: and lgrind are included; lgrind is the 2e style for including code in rlm@421: your thesis. rlm@421: rlm@421: \documentclass[12pt]{mitthesis} rlm@421: \usepackage{lgrind} rlm@421: \pagestyle{plain} rlm@421: rlm@421: You can add options in the documentclass line as follows: rlm@421: rlm@421: o singlespace rlm@421: rlm@421: \documentclass[12pt,singlespace]{mitthesis} rlm@421: rlm@421: o twoside rlm@421: rlm@421: \documentclass[12pt,twoside]{mitthesis} rlm@421: rlm@421: o draft (make sure to change the pagestyle to drafthead as rlm@421: well) rlm@421: rlm@421: \documentclass[12pt,draft]{mitthesis} rlm@421: \usepackage{lgrind} rlm@421: \pagestyle{drafthead} rlm@421: rlm@421: o vi (for course vi and course viii theses) rlm@421: rlm@421: \documentclass[12pt,vi]{mitthesis} rlm@421: rlm@421: Any options you would use for report.sty will work here as well. rlm@421: rlm@421: rlm@421: You should not need to change the first three lines and last two lines rlm@421: below. Be sure to include an \include command for each file you are rlm@421: including in your thesis. rlm@421: rlm@421: \include{cover} rlm@421: \pagestyle{plain} rlm@421: \include{contents} rlm@421: \include{chap1} rlm@421: \include{chap2} rlm@421: \appendix rlm@421: \include{appa} rlm@421: \include{appb} rlm@421: \include{biblio} rlm@421: \end{document} rlm@421: rlm@421: Comment: to include appendices use a single \appendix command followed by rlm@421: a number of \include{} commands as many files as needed, each of which rlm@421: should contain a \chapter{} command for the appendix title.