-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathreport.tex
200 lines (169 loc) · 4.72 KB
/
report.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
\documentclass[12pt]{article}
\usepackage{pd2}
\usepackage{lipsum} % remove this
% Your information
% Enter your report information here
\faculty{Faculty of Mathematics}
\reporttitle{Lorem Ipsum}
\fullname{Liam Horne}
\term{2A}
\program{Computer Science}
\studentid{20465555}
\address{123 Apple Street}
\city{Cambridge, Ontario}
\postalcode{A1X B2Y}
\pdtitle{PD2: Critical Reflection and Report Writing}
\supervisor{Mr.}{Tim}{Paci}
% Title Page (ignore)
% Creates the title page based on your information above
\newcommand{\createtitlepage} {
\pagenumbering{roman}
\waterlootitlepage
{\myFaculty}
{\myTitle}
{\myPD \\ \UwLocation}
{\myName \\ \myTerm \ \myProgram \\ ID \myIdNumber \\ \today}
}
% Letter of Submittal
% Write your letter of submittal below, the header, salutation,
% and signature (except the image) are done for you already
\newcommand{\letterofsubmittal} {
\waterlooletterofsubmittal
{\myAddress}{\myCity}{\myPostalCode}{\supervisorAddress}{\supervisorSalutation}{\myName}{\myIdNumber}
{
\lipsum[1] % remove this line
% Write your letter here
}
{
% Attach an image of your signature
% The first number is a scale factor
% (if you can't, just delete this and uncomment next line)
\scalebox{0.1}{\includegraphics{examplesignature.jpg}}
% \myName
}
}
% Table of Contents
% The table of contents will be generated for you
% Summary
% Write your summary here
\newcommand{\summary}{
\tocsection{Summary}
{
\lipsum[10-11] % remove this line
% Write your summary here
}
\newpage
}
% Introduction
% Write an introduction here
\newcommand{\introduction}{
\fancyhf{}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\rfoot{\thepage}
\pagenumbering{arabic}
\mySection{Introduction}
{
\lipsum[8-9] % remove this line
% Write your introduction here
}
\newpage
}
% Analysis (body)
% Write the body of your report here
% Section Headers:
% \mySection{ title }{ ... } will create a new section block
% \mySubSection{ title }{ ... } will create a new subsection block
% \mySubSubSection{ title }{ ... } will create a new subsubsection block
% Bullet Points:
% \bulletpoints{
% \item bullet point 1
% \item bullet point 2 (and so on)
% }
% For Figures:
% \myFigure{ scaling factor }{ image.jpg }{ caption } adds a figure
% For Tables:
% \myTable{ scaling factor }{ table.jpg }{ caption }
% (if your table is an image) or you need to learn normal LaTeX syntax
% Read this for help: http://en.wikibooks.org/wiki/LaTeX/Tables
\newcommand{\analysis}{
% Write your body here
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%% This is an example, remove this entire block %%%%%%%%%
\mySection{My Amazing Section}{
\lipsum[2]
\mySubSection{My Amazing SubSection} {
\lipsum[12]
\bulletpoints{
\item first item
\item second item
}
\mySubSubSection{My Amazing SubSubSection} {
\lipsum[10]
\myFigure{0.10}{examplefigure.jpg}{Hello, World}
\lipsum[11-12]
\myTable{0.3}{exampletable.png}{Hello, Table}
}
}
}
\mySection{My Amazing Section}{
\lipsum[2]
\mySubSection{My Amazing SubSection} {
\lipsum[12]
\mySubSubSection{My Amazing SubSubSection} {
\lipsum[18-21]
}
}
}
%%%%%%% This is an example, remove this entire block %%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage % This creates a new page, your may or may not want this, remove at your own discretion
}
% Conclusions
% Write your Conclusions
\newcommand{\conclusions}{
\section{Conclusions}
{
\lipsum[33-35] % remove this line
% Write your conclusions here
}
}
% Recommendations
% Write your Recommendations here
\newcommand{\recommendations}{
\section{Recommendations}
{
\lipsum[37-39] % remove this line
% Write your recommendations here
}
}
% References
% Add your own References
\newcommand{\references}{
\makereferences{
% Add each reference like this, with some label for each item
\bibitem{labelName}
Champion, R., Paci, T. \& Vardon, J. (2012). PD 2: Critical Reflection and Report Writing. Retrieved 1 March, 2012 from https://learn.uwaterloo.ca/d2l/le/content/80224/viewContent/605550/View
}
}
% Appendices
% Add your appendices
\newcommand{\myappendix}{
\addanappendix{Appendix A: Lorem Ipsum}{
\lipsum[50] % remove this line
}
\newpage
\addanappendix{Appendix B: PD2 Report Checlist}{\addchecklistappendix}
}
\begin{document}
\createtitlepage
\letterofsubmittal
\mytableofcontents
\summary
\introduction
\analysis
\conclusions
\recommendations
\references
\myappendix
\end{document}