 |
Topic 4: Tips for Writing Computer Instructions
This
topic will briefly describe things to consider when
you are writing computer instructions. Usually instructions
will consist of a step-by-step description of a specific
task. First we’ll discuss some general suggestions for
organizing such a procedure. Next, this topic will give
specific tips on how to write the instructions and how
to describe keys and menu items.
The
suggestions in this topic are consistent with the way
many people within IT Services write instructions. Additional
tips were gathered from the Microsoft Manual of Style
for Technical Publications (Second edition), published
by Microsoft Press, Washington (1998). This manual of
style is worth using when you write computer instructions.
In
this topic:
Organizing
a procedure
When
you write a procedure, it is important to:
|
To
|
Do this
|
|
To Quit and Save
changes to the existing file.
|
From
the File menu, click "Save"
then click "Exit" from the File menu.
|
|
Quit without saving
changes.
|
From the File
menu, click "Exit".
|
Conventions for writing about
menus and commands
- Capitalize
menu names, command and command button names, dialog
box titles and tab names as you see them in the application
interface.
- Do
not capitalize interface elements used generically,
such as toolbar, menu, scroll bar,
and icon. Capitalize the names of functional
elements that do not have a label in the interface,
such as toolbars (the Database toolbar) and toolbar
buttons (the Insert Table button).
- Make
menu names bold when you use them in a procedure step.
- Put
the options you choose from the menu in bold and in
quotation marks.
EXAMPLES
- From
the Help menu, choose "Microsoft
on the Web".
- From
the Insert menu, click "Date and
Time".
- Select
the "Automatically hyphenate document"
check box.
Notice
how the words "the" and "menu"
are used with menu names, for example: "the Help
menu". You can use "the Open command"
in normal text; however don't use command names with
the words "the" and "command,"
in a procedure, for example "the Paste command".
- Write
sentences to describe the instructions, rather than
a list of commands. In some cases though, you will
use for example; Insert/Picture/Clip Art... because
it is much shorter. Think about who you are writing
for.
- Do
not combine names of menu commands and menus into
one name, because they are distinct elements on the
screen. Also do not use the possessive form of menu
and command names.
| Poor
instructions: |
What's
wrong? |
| Click
File Open |
-The
menu name and the command name should be used as
two separate names. |
| File>Open |
-A
sentence will give a better description. |
| From
the File menu, Click the Open command. |
-Do
not use "the Open command" in a procedure.
Simply use "Open". |
| Click
the File menu's Open command. |
-Do
not use a possessive form of a menu name.
|
| |
|
| Good
instructions: |
From
the File menu, click "Open". |
How
to ask for user input
Put
user input and program output in italics. You can
use bold if you want to. Don’t capitalize it unless
it is case-sensitive. Try to edit the text in such
a way that you ask for user input on a new line.
EXAMPLE
Type: y
or
Type
Uniqueid@muohio.edu
In
the last example, only 'uniqueID' is capitalized,
to show that users should replace this word with their
own uniqueID when they enter the information.
When
telling a user to "press" a key, instead
of typing the letter, format the key name in all caps.
EXAMPLE
Press < Y >
Key
names, combinations and sequences
Key
names
Capitalize key names and put them in brackets. For
example: < ENTER >, < ALT >, < PRINT
SCREEN >, < RIGHT ARROW >.
Key sequences
Use commas followed by spaces, as in < ALT >,
< F >,
< D > to indicate a key sequence, the user should
press and release < ALT >, and then < F >,
and then < D >.
Short
cut keys
Use a plus sign, as in < CTRL+V > to indicate
key combinations for a shortcut key. Put all keys
inside the brackets so the user knows it is one key
action; the user has to press and hold down < CONTRO
L> and then press < V >.
To show a key combination that includes a "shifted"
key, such as the question mark, add < SHIFT >
to the combination and give the name or symbol of
the shifted key, such as < ? > or < $ >.
Using the name of the unshifted key, such as <
4 > rather than < $ > could be confusing.
EXAMPLE
Poor: < CTRL+SHIFT+4 > or < CTRL+$
>
Good: < CTRL+SHIFT+$ >
Spell
out the following special character names when you
describe shortcut keys because these keys are difficult
to see or can easily be confused with an action:
PLUS
SIGN
MINUS SIGN
HYPHEN
PERIOD
COMMA
EXAMPLE
|
Poor:
|
Good:
|
|
<
SHIFT+ + >
|
<
SHIFT+PLUS SIGN >
|
|
<
ALT >, < - >,< C >
|
Press
< ALT >,< HYPHEN >,< C >
|
|
Press
< , >
|
Press
< COMMA >
|
|
 |