Document Standards
- Put the figures right after the text that describes the
screen shot.
- When referring to another section for the first time, use the
section number and title. When referring to that same section a second
(or third, fourth, ...) time, only use the section number. At all
times, make that reference to the other section a hyperlink so the user
can quickly jump to that section.
- When referring to the user of our program, use the following
names
in the specific situations instead of using a more general term like
"the user".
- student: the user of the student version of our program
- instructor: the user who creates/edits a question or a test,
gives
an in class test, and grades taken tests.
- Section titles will use the HTML heading tags.
- h2 for 1st and 2nd level sections (e.g. 2. and 2.1.)
- h3 for 3rd and 4th level sections (e.g. 2.1.2. and 2.1.2.1.)
- h4 for 5th level sections (e.g. 2.1.2.1.1.)
- Add a named anchor before every section title so in the Table of
Contents, the
user can jump to a specific section in a large HTML file. The anchor
name should match the section number. For example, the HTML code for
section 2.3.1 would look like:
<a name="2.3.1"></a>
- Figures names are made up of two parts: the section number and
the image number. Here is an example of the figure name for the second
image in section 2.3.1:
Figure 2.3.1.i2
- Add a named anchor before every screenshot so we can have a List
of Figures. The anchor name should match the figure name. For example,
the HTML code for the second image in section 2.3.1 would look like:
<a
name="2.3.1.i2"></a>
- Figures must also contain a caption. This is placed right after
the figure name. For example,
Figure 2.3.1.i2: Sample Caption
- The figure name and caption goes below the actual image and
should be bold. The
image, figure name and caption must be centered.
- The image filenames must follow the figure naming convention. For
example, the filename for the second image in section 2.3.1 would be
figure2.3.1.i2.jpg
(the file may also be in gif or png format, but not bmp, tif, or any
other format).
- Use the paragraph tag,
<p>
, to separate
blocks of text into paragraphs instead of an empty line by using
multiple <br>
tags.
- When referencing a GUI element in a screen shot (a button or
label for example), reference it by it's text and make it italicized. For
example, there is a button labeled
Submit
. When referring
to that button, it should look like: when the student presses the Submit button ...
- When using a keyword, bold
them the first time they appear in a second level section (e.g. 2.1,
2.2, 2.4 ...). Also, give a short
definition of that keyword immediately after using that keyword for the
first time. Each subsequent time the keyword is used, it is NOT bold,
just plain text.
- For functional requirements, the title of the HTML document must
be Team Bang. So the HTML
code would look like
<title>Team Bang</title>
.
- Screenshots will be taken by executing the prototype code, not by
using Test Form in NetBeans.
- Do not change the font name, size, or color.