-
main.texis the base file for the project.- Defines the
\documentclass - Loads the version control
- Specifies the start and end of the document with
\begin{document ]and\end{document} - Load all other
*.texfiles, contents, bibliography etc.
- Defines the
-
foo.styloads all necessary packages, and defines new commands. Comment out anything you don't want to use. -
main.texis the main document which calls all the other*.texand*.bibfiles. -
main.tex.latexmaintells vim-LaTeX thatmain.texis the main document file, such that the document can be compiled from any file opened within Vim. -
*.tex, images, tables and source-code are all kept in separate sub-directories.
vcandvc-git.awkare used with Stephan Hennig's version control bundle (http://www.ctan.org/tex-archive/support/vc/).- a
vc.texfile will be generated which contains macros which allows you to insert revision information in the document---see the\fancyfootdefinitions in the*.stystyle file. - (Comment out these commands if not using version control).
kbib.bstis used to such that references are printed 'Surname, Firstname' in the Reference list.- This is used in conjuction with the
natbibpackage, for Author-Year citations.