McGill EThesis Pilot Project - LaTex stylesheet

To install:

Download mcgilletdlatexss.zip. See the documentation of your local LaTex implementation for instructions on how to correctly install local customizations.

The zip file contains the following files:

Generating an Index

If you want to generate an index, you will need the command \makeindex[index] in the preamble. Here, index can be any word named by users.

The command \index[index]{entry} is used to index entry at that point in the document.

For example, the following code:
	\makeindex[myindex1]
	...
	Eigenvectors\index[myindex1]{eigenvector} are defined 

will produce output and place the entry `eigenvector' in the myindex1.idx file with the associated page number.

The mcgill etd class redefines the command \printindex which should be placed at the point in the document where you want your index to appear. And \printindex command can be used as following: \printindex[myindex1]{Index - this will appear in the table of contents}{Index - this will be the title of your index.}{Some textual information you want to add the head of your index.}

Two index formats are defined. One is with leading dots (mcgillpage.ist}, another is without dots{mcgilldotpage.ist}.

If you are also using BIBTEX and the index format without leading dots, you will need to do:


latex filename.tex
bibtex filename
makeindex -s mcgillpage.ist myindex1 
latex filename.tex
latex filename.tex