Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

31
Scientific Communication CITS7200 Lecture 13 Writing a Thesis

Transcript of Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

Page 1: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

Scientific Communication CITS7200

Lecture 13Writing a Thesis

Page 2: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• A thesis is an unusually long paper containing a detailed discussion of a unifying hypothesis regarding the work you have undertaken in your research

Page 3: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• A thesis is a proposition to be maintained or proved

• A hypothesis is a proposition made as a basis for reasoning without the assumption of its truth; a supposition made as a starting point for further investigation

Page 4: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• A PhD thesis shall be a substantial and original contribution to scholarship, for example, through the discovery of knowledge, the formulation of theories, or the innovative re-interpretation of known data and established ideas

Page 5: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• A thesis must describe your own work and thinking

• A thesis must demonstrate that you can work independently, accurately, and critically

Page 6: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Before you start, check the regulations

• Use CS&SE Honours styleguide

Page 7: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Plan your writing• Start early• Collect all data from all experiments

and format for inclusion• Collect all bibliographic information

at time of reading• Write synopses when you read

Page 8: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Keep records as you go along, and date them

• Do systematic work• Don’t claim precision where

it is not justified• Don’t present a conjecture as a fact• Don’t plagiarise• Don’t falsify records or cook up data

Page 9: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Keep backups of all work• Don’t underestimate the amount of

time writing takes

Page 10: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

The form of a thesis

• Title Page

Page 11: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

The Title of My Thesis

M. Y. Surname

This report is submitted as partial fulfillment of the requirements for the Honours Programme

of the School of Computer Science & Software

EngineeringThe University of Western Australia

2006

Page 12: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Acknowledgements

• Thank those who helped you, and acknowledge any financial help

Page 13: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Abstract

• “an abbreviated, accurate representation of the contents of a document, without added interpretation or criticism and without distinction as to who wrote the abstract”.

Page 14: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• An informative abstract answers, in about 100 - 250 words, the following questions: – Why did you start? – What did you do, and how? – What did you find? – What do your findings mean?

Page 15: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• If your paper is about a new method, the last two questions might be replaced with: – What are the advantages of the

method? – How well does it work?

Page 16: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Preface (optional)• Contents • List of Figures• List of Tables

Page 17: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Chapter 1. Introduction • Give an overview of the problem

and state the hypothesis that your thesis presents

Page 18: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Chapter 2. Review of the literature

• Present previous work in this area that is relevant to the approach you have taken or that makes a complete story

Page 19: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Chapter 3. Methods • Describe the methods and

materials of your work. This might be: – the details of existing theory, – mathematical developments, – experimental procedures, and – details about equipment

Page 20: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Chapter 4 to n. Results • Give the experiments you conducted

and the results you found• Introduce each experiment with the

particular hypothesis you were testing in that experiment

• Give the results clearly in tables or graphs, and discuss how they relate to the hypothesis

Page 21: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Chapter n+1. Discussion and Conclusion

• Draw together all your results and discuss how they relate to the unifying hypothesis from the Introduction

Page 22: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Bibliography • Appendices

Page 23: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

Latex stuff

• \documentclass[12pt, a4paper]{book}

• %preamble setting up formatting details

• \parindent 0pt • \parskip 5pt • \renewcommand{\baselinestretch}

{1.5}

Page 24: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• \begin{document} • \begin{titlepage} %design of title page

here

• \end{titlepage} • \pagenumbering{roman} • \tableofcontents

Page 25: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• \chapter{Title of first chapter} \pagenumbering{arabic}

• \input{chap1} • \chapter{Title of second chapter}• \input{chap2} %Continue until all chaps are

included

• \bibliographystyle{plain}• \bibliography{refs} • \end{document}

Page 26: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

• Not that with the \input command, the file is not stand-alone Latex

• You can intersperse \input commands with other text

• Page numbering and cross-referencing is not handled correctly

Page 27: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

\chapter{Introduction}There are two sections to this

chapter:\input{firstsection}\input{secondsection}

Page 28: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

You can see from the really complexfigure in Figure~\ref{complex} that mytheory is better than yours.

\begin{figure}\input{myfigure1}\caption{My complex figure.}\label{complex}\end{figure}

Page 29: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

\documentclass{…}

\begin{document}\include{firstfile}\include{secondfile}…\include{lastfile}\end{document}

Page 30: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

\documentclass{…}\includeonly{secondfile}\begin{document}\include{firstfile}\include{secondfile}…\include{lastfile}\end{document}

Page 31: Scientific Communication CITS7200 Lecture 13 Writing a Thesis.

\includeonly{firstbit,lastbit}