You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/template.tex
+20-30Lines changed: 20 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -79,12 +79,12 @@
79
79
\maketitle
80
80
81
81
\begin{abstract}
82
-
This document describes the most common article elements and how to use the IEEEtran class with \LaTeX\ to produce files suitable for submission to the IEEE. IEEEtran can produce conference, journal, and technical note (correspondence) papers with suitable class options.
82
+
This document describes the most common article elements and how to use the IEEEtran class with \LaTeX\ to produce files suitable for submission to the IEEE. IEEEtran can produce conference, journal, and technical note (correspondence) papers with suitable class options.
83
83
This template is meant as a general guideline on how to write a report, and to give some tips about what you should and should not be writing. You may move or cut sections depending on the assignment or your needs.
84
84
85
-
While writing this report template, I enjoyed reading Michael Alley's `The Craft of Scientific Writing'. I recommend having it by your side when you are stuck writing- it happens to all of us\cite{AlleyMichael2018TCoS}.
85
+
While writing this report template, I enjoyed reading Michael Alley's `The Craft of Scientific Writing'. I recommend having it by your side when you are stuck writing- it happens to all of us~\cite{AlleyMichael2018TCoS}.
86
86
87
-
Make sure you clean up the template text before submitting your report.;)
87
+
Make sure you clean up the template text before submitting your report.;)
88
88
\end{abstract}
89
89
90
90
\begin{IEEEkeywords}
@@ -119,12 +119,11 @@ \section{Introduction}
119
119
120
120
\begin{enumerate}
121
121
\item This report describes the design and implementation of a list ADT using a linked list. It will go into detail about the design choices made and discuss the benefits and trade offs of those choices.
122
-
\item Boids is a computer model created by Craig Reynolds that simulates the flocking behavior of birds\cite{TanenbaumAndrewS.2024Mos}. In this report, we present an implementation of the model using the Python programming language.
122
+
\item Boids is a computer model created by Craig Reynolds that simulates the flocking behavior of birds~\cite{TanenbaumAndrewS.2024Mos}. In this report, we present an implementation of the model using the Python programming language.
123
123
\item SQL is a widely used querying language used to process queries into table-based databases. This text details the implementation of a simplified server that implements a subset of the SQL language built over sqlite.
124
124
\end{enumerate}
125
125
126
-
\subsection{Outline}
127
-
\label{Subsection:Outline}
126
+
\subsection{Outline}\label{Subsection:Outline}
128
127
The rest of this paper is organized as follows:
129
128
130
129
@@ -141,8 +140,7 @@ \subsection{Outline}
141
140
\textbf{Section~\ref{Section:Conclusion}} concludes and summarizing possible future work.
This section is where you provide information on the theoretical aspects of your design.
147
145
You can usually assume that the theory required to solve the assignment is known to the reader, but if you want to clarify terms or go into detail about specific points in the theory (if you are doing something slightly different, or a detail of it is of notable importance to your implementation), consider writing a few words about it here.
The basic concept of virtual memory is that you map the virtual address the processes use to a unique
157
154
physical address in physical memory. This means that two processes can access the same virtual address
158
155
in their address space but get two different results since the addresses point to different
159
156
places in the physical memory. This again means that each process can use all of its 32-bit
160
157
address space while still ensuring that no other processes can access its data~\cite{TanenbaumAndrewS.2024Mos}
161
158
162
-
Using figures in technical backgrounds is encouraged, if that makes the concept easier to explain. Usually, you want figures/images as Scaleable Vector Graphics(SVG) or Portable Document Format(PDF), especially for your graphs. Sometimes that is not doable, and you can use portable network graphics(PNG) or similar.
159
+
Using figures in technical backgrounds is encouraged, if that makes the concept easier to explain. Usually, you want figures/images as Scaleable Vector Graphics(SVG) or Portable Document Format(PDF), especially for your graphs. Sometimes that is not doable, and you can use portable network graphics(PNG) or similar.
163
160
The following snippet shows how to import figures.
164
161
165
162
\begin{figure}[htbp]
@@ -177,8 +174,7 @@ \subsection{Virtual memory}
177
174
\end{center}
178
175
\end{figure}
179
176
180
-
\section{Design}
181
-
\label{Section:Design}
177
+
\section{Design}\label{Section:Design}
182
178
This is where you describe how you solved the assignment, at least on paper. Give a high-level view of your design.
183
179
As a rule of thumb, if you find yourself describing code, you need to go to a higher abstraction level. If you for some reson want to write code you can use the `listings' package as seen in \autoref{strcpy}
184
180
@@ -210,24 +206,21 @@ \section{Design}
210
206
Examples of what the design section should cover:
211
207
212
208
\begin{itemize}
213
-
\item The interface of the list ADT supports six methods. These are create\_list(), destroy\_list(), add\_list(), remove\_list(), iterate\_list() and sort\_list(). When a list is created, it is provided with a comparator method that is used to handle sorting{\dots}
209
+
\item The interface of the list ADT supports six methods. These are `create\_list()`', `destroy\_list()`', `add\_list()`', `remove\_list()`', `iterate\_list()`' and `sort\_list()`'. When a list is created, it is provided with a comparator method that is used to handle sorting{\dots}
214
210
\item The Boids simulation consists of a set of entities called Boids, Each boid moves independently according to a set of criteria, specified in three rules. Firstly, boids avoid crashing into obstacles, including other boids. Secondly, boids attempt to maintain the same speed and heading as nearby boids. Finally, all boids attempt to move closer to each other to form a cohesive flock.
215
211
\item The server parses incoming data requests into an SQL query and runs them on its database. The result is then processed into JSON and returned to the client.
216
212
\end{itemize}
217
213
218
214
219
215
Remember to avoid low-level details! An expert should in theory be able to implement your design in any programming language based on what you write in this section.
This is where you go into detail about your specific implementation. Questions you should answer here are things such as ``How does your implementation match your design?'' and ``Are there any bugs, and do you have any ideas about what may be causing them?''. What sort of difficulties did you experience when working, and how did you overcome them? If you found a clever solution to the problem, this is also the place to write about that.
You may want to include a short section giving high-level details about your implementation, such as the programming language used and other information you find relevant for your report. In most cases however, this section is unnecessary, as the assignment usually decides those details for you. Even if you have the freedom of choice, consider whether this information is really relevant to the report, which should avoid low-level implementation details most of the time.
228
222
229
-
\section{Experiments and Results}
230
-
\label{Section:ExperimentsandResults}
223
+
\section{Experiments and Results}\label{Section:ExperimentsandResults}
231
224
A core pillar of computer science is testing. In this section, you should include your methodology for testing your implementation. How do you know your implementation meets the requirements? What sort of performance metrics have you chosen to benchmark your solution, and how did you go about performing tests to gather those metrics?
232
225
233
226
You should present the results of your tests here, either using an illustration and/or a table of results. These will be valuable in the discussion section.
@@ -253,31 +246,28 @@ \section{Experiments and Results}
253
246
254
247
If presenting data and benchmarks are not important to the assignment, you may likely find yourself cutting this section. If you decide to do so, make sure you at least mention your correctness criteria and testing methodology somewhere else.
255
248
256
-
\section{Discussion}
257
-
\label{Section:Discussion}
249
+
\section{Discussion}\label{Section:Discussion}
258
250
The discussion section is the most important section in a report, This is where you show that you understand the theory behind the solution, and also a chance to argue the pros and cons of your solution. You should discuss about the results of your measurements and why you think they are the way they are. Also bring up tradeoffs, and why you made the choices you did; show that you understand the alternatives, and why they may be a good idea (or not) for the particular problem the assignment asked you to solve.
259
251
260
252
261
253
Here is an example of a discussion subsection:
262
254
263
-
\subsection{Recovery of a simulated crash}
264
-
\label{Subsection:Recovery_simulated_crash}
255
+
\subsection{Recovery of a simulated crash}\label{Subsection:Recovery_simulated_crash}
265
256
When a node recovers from a simulated crash, it will check if it's neighbors is still connected to it. If not, it will try and start an internal join to its previous successor. This works as long as the previous successor is still active in the network. The case where the previous successor is not active, is not dealt with, and will result in the node not being able to recover.
266
257
267
258
268
-
\section{Conclusion}
269
-
\label{Section:Conclusion}
259
+
\section{Conclusion}\label{Section:Conclusion}
270
260
Here you sum up the report and reiterate the results. Does not need to be very long, a few sentences is fine.
271
261
272
262
273
-
\printbibliography
274
-
275
-
{\appendix[Proof of the Zonklar Equations]
263
+
\printbibliography{
264
+
\appendix[Proof of the Zonklar Equations]
276
265
Use $\backslash${\tt{appendix}} if you have a single appendix:
277
266
Do not use $\backslash${\tt{section}} anymore after $\backslash${\tt{appendix}}, only $\backslash${\tt{section*}}.
278
267
If you have multiple appendixes use $\backslash${\tt{appendices}} then use $\backslash${\tt{section}} to start each appendix.
279
268
You must declare a $\backslash${\tt{section}} before using any $\backslash${\tt{subsection}} or using $\backslash${\tt{label}} ($\backslash${\tt{appendices}} by itself
0 commit comments