diff options
author | Karl Berry <karl@freefriends.org> | 2012-04-19 17:03:23 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-04-19 17:03:23 +0000 |
commit | 9e54bcf0f28d5ed3635462139e6b039ba7c7213f (patch) | |
tree | cfa5fc125b6d51b8315ef5b8834bbadc64eb4d87 /Master/texmf-dist/doc/latex/adfathesis | |
parent | c192086fe45d957a4516f2b2f8d7db374df148aa (diff) |
old package adfathesis (2004)
git-svn-id: svn://tug.org/texlive/trunk@26048 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/adfathesis')
-rw-r--r-- | Master/texmf-dist/doc/latex/adfathesis/README | 58 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/adfathesis/adfathesis.pdf | bin | 0 -> 191570 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/adfathesis/template.tex | 78 |
3 files changed, 136 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/adfathesis/README b/Master/texmf-dist/doc/latex/adfathesis/README new file mode 100644 index 00000000000..6f454d59fc9 --- /dev/null +++ b/Master/texmf-dist/doc/latex/adfathesis/README @@ -0,0 +1,58 @@ +Adfathesis + +This class modifies the standard report class to meet the requirements +of the Australian Defence Force Academy (a college of the University +of New South Wales) as given in the `University College Handbook'. +This class is ultimately derived from the old suthesis style. + +The main changes in this class are firstly to use space and a half +interline spacing, except in footnote, figure and table environments +where normal spacing is used. Secondly the chapter and section +headings are changed to be less `shouting' than the standard LaTeX +designs. Thirdly less profligate use was made of vertical spacing. +There is more information in a short document appended to the end of +adfathesis.cls (I have not progressed to using a .dtx). + +Since two sided theses are now accepted for theses, I used the +adfathesis class with the following options: + +\documentclass[a4paper,12pt,openright,twoside]{adfathesis} + +As supplied adfathesis automatically uses the Harvard package and the +supplied `adfathesis.bst' is designed to work with the Harvard +package. If you wish to use a different bst, such as `plain.bst', +this will not be appropriate. There is a class option `normalbib' +which stops the automatic use of the Harvard package, and hence allows +use of either the standard LaTeX bibliography style or an alternative +package. + +Version 2.3 + +Changes: \cleardoublepage modified to ensure that blank pages use the +empty pagestyle (from the fancyhdr documentation). Changes to default +penalty values affecting widows/orphans, following suggestions in a +post by Michael Downs on comp.text.tex. The table and table* +environments are defined to automatically swap the settings for +abovecaptionskip and belowcaptionskip, so table captions have the +correct spacing when above the table. + +Version 2.4 + +Changes: added an option `honours' that changes the titlepage to one +more appropriate to a Honours report. For this option you should set +\degreetype in the preamble to the appropriate faculty, it defaults to +`Science'. Improved vertical spacing around chapter headings. + +The files supplied are as follows: + + adfathesis.bst + adfathesis.cls + adfathesis.sty + 00readme.txt + template.tex + +Version 2.5 + +Changes: modified to use docstrip. No other changes were made. + +Stephen Harker sjh@ph.adfa.edu.au diff --git a/Master/texmf-dist/doc/latex/adfathesis/adfathesis.pdf b/Master/texmf-dist/doc/latex/adfathesis/adfathesis.pdf Binary files differnew file mode 100644 index 00000000000..1d915c1a4bb --- /dev/null +++ b/Master/texmf-dist/doc/latex/adfathesis/adfathesis.pdf diff --git a/Master/texmf-dist/doc/latex/adfathesis/template.tex b/Master/texmf-dist/doc/latex/adfathesis/template.tex new file mode 100644 index 00000000000..80fbb3da6db --- /dev/null +++ b/Master/texmf-dist/doc/latex/adfathesis/template.tex @@ -0,0 +1,78 @@ +\documentclass[a4paper,12pt,openright,twoside]{adfathesis} +\usepackage{dcolumn} +\usepackage{graphicx} + +%----------------------------------------------------------------------- +% Harvard citation style control. +%----------------------------------------------------------------------- +\citationstyle{agsm} +\renewcommand{\harvardand}{and} + +%----------------------------------------------------------------------- +% Setup Decimal column alignment (using dcolumn). +%----------------------------------------------------------------------- + +\newcolumntype{d}[1]{D{.}{\cdot}{#1}} + +%----------------------------------------------------------------------- +% Control included chapters here +%----------------------------------------------------------------------- + +\includeonly{chapter2} + +\title{A fascinating thesis} +\authornameonly{Fred Nerk} +\author{\Authornameonly \\ B.Sc.} +\copyrightfalse % Set true to get copyright page. +\thesistype{Doctor of Philosophy} % Default value. +\figurespagetrue % Set false to avoid list of figures. +\tablespagefalse % Set true to get list of tables. + +\begin{document} + +\beforepreface +% \declaration % Declaration page. +\prefacesection{Abstract} + This thesis tells you all you need to know about... +\prefaceseciton{Acknowledgements} + I would like to thank... +\afterpreface + +%----------------------------------------------------------------------- +% Begin thesis: use \include for each chapter as a separate file. +%----------------------------------------------------------------------- + +% chapter 1 +\include{chapter1} % Introduction + +% chapter 2 +\include{chapter2} + +% chapter 3 +\include{chapter3} + +% chapter 6 +\include{chapter6} % Conclusions + +%----------------------------------------------------------------------- +% Appendices: use \appendix switch to change to appendices. +%----------------------------------------------------------------------- +\appendix + + +% First appendix +\include{appendix1} % A long proof + +% Second Appendix +\include{appendix2} + + +%----------------------------------------------------------------------- +% Bibliography: The clearpage is needed to get the page reference right. +%----------------------------------------------------------------------- +\clearpage +\addcontentsline{toc}{chapter}{References} +\bibliographystyle{adfathesis} +\bibliography{mybib} + +\end{document} |