Uses of word processor programs

Goals

  • Students will recognize the major types of word processing programs.
  • Students will discriminate the types of problems that are best solved
    with various types of word processors.
  • Students will recognize the major tools that are available in word
    processor application programs.
  • Students will use a text editor to create and modify a simple ASCII
    text file.
  • Students will use a high end word processing program to practice
    common text formatting problems.

Prereqs

  • Comfort with the keyboard and mouse
  • Experience with the STAIR process for solving problems
  • Familiarity with principles of data encoding
  • Familiarity with differences between hardware and software
  • Understanding of the attributes of RAM
  • Familiarity with operating systems, file names and directories

Discussion

Word processing is one of the most common applications for computers
today. It would be difficult to spend a day in a modern office or
university without coming into contact with a word processing program.
Most people have had some contact with word processing. We shall
examine the concept in some detail, so you will be familiar with a
number of levels of word processing software applications, the types
of tools such programs make available to you, and so you will know
what kinds of problems are best solved with this type of program.

How Word Processors Work

The advantages of word processing programs can best be illustrated by
thinking of some of the disadvantages of typewriters. When we use a
typewriter to create a document, there is a direct connection between
the keys and the paper. As soon as you press a key on the keyboard,
there is an impact on the paper, and the document has been modified.
If you catch a mistake quickly, you can fix it with correction tape or
white-out. If your mistake is more than one character long, it is
much harder to fix. If you want to add a word, move a
paragraph, or change the margins, you have to completely retype the
page. Sometimes this necessitates changes on other pages as well. A
one word change could lead to retyping an entire document.

Word processing is a type of software that focuses on the ability to
handle text. The computer does this by assigning each letter of the
alphabet and each other character on the keyboard a specific numeric
code. These numeric codes are translated into computer machine language,
and stored in the computer’s memory. Because the information is in memory,
it is very easy to change and manipulate. This is the key to the
success of word processing.

Example

Information in memory can be moved very quickly and easily. If we
want to change a word in a document, what happens in the computer is
something like this:

Imagine Darlene has started out her resume with the following word:

REUME

Obviously she has forgotten a letter. If she were using a typewriter,
the page would be trashed, and she would have to start over. Since
this is a word processor, Darlene can manipulate the memory containing
codes for the word «REUME» and add the «S» to it. When she tries, the
following things happen:

She moves her cursor to the spot in the text where she wants the S to
show up. The «cursor» is a special mark on the screen that indicates
at which place in the document the computer is currently focused. In this
case, Darlene wants to put an S between the E and the U. Her word
processor won’t let her put the cursor between two letters (although
some will), so she puts it on the U.

By moving the cursor, Darlene is telling the program to move around in
memory as well. When she place her cursor on the U on the screen, she
is telling the program to point to the corresponding spot in the
computer’s memory. The computer is now concentrating on the memory
cell that contains the code for the character «U».

She checks to be sure she is in insert mode (more on that later),
and she types the letter «S».

When Darlene does this, the computer shifts all the letters one memory
cell to the right, and inserts the code for the S in its proper
place.

Word processors and RAM

It sounds like a lot is happening. That’s true, but computers do all
these things so quickly that it seems instantaneous to us. You don’t
really have to know exactly where the stuff is in memory, or how it
gets moved around. The important thing to understand is that all the
information in your document is stored in some kind of digital
format in the computer’s memory. When you modify a document, you are really
modifying the computer’s memory. A word processing program handles
all the messy memory manipulation, so all you have to do is concentrate
on writing your paper.

RAM (Random Access Memory), where all the action is happening, has
one serious drawback. It only lasts as long as the computer is receiving
electrical power. Obviously this will cause some problems, because you
can’t just carry a computer around to show people your documents.
(Imagine the extension cord!) You also might run into some serious
problems if your computer were suddenly hit by a monsoon or something,
and you lost electrical power. In short, you cannot count on RAM memory
alone.

Word processing programs (as well as almost every type of program) are
designed to allow you to copy your information. Computer scientists
refer to the information your program is using as data. The data in
RAM can easily be duplicated to floppy disks or a hard drive. This is
called saving. Copying the data from RAM to a printer is called
printing. You can also copy data from other places to RAM. Copying the data
from the disk is referred to as loading the data. You might already
know what saving and printing are. We don’t mean to insult you by
telling you again. We just want to illustrate that it all boils down
to copying binary information to and from RAM.

Types of Word Processing Programs

There are many flavors of word processing programs. Different
programs are better for different types of jobs. One common problem
is deciding which program you will use to do a certain type of job.
It is important to know your options.

Text Editors

The simplest programs that do word processing are known as text
editors. These programs are designed to be small, simple, and cheap.
Almost every operating system made has at least one built in text
editor. Most text editors save files in a special format called
ASCII (American Standard Code for Information Interchange — Whew!)
ASCII is a coding convention that almost all computers understand.
Each letter is assigned a numeric value that will fit in eight digits
of binary notation. «a» is 97 in ASCII, and «A» is 65. All the
numeric digits, and most punctuation marks also have numeric values in
ASCII. You certainly don’t need to memorize all the codes, (That’s
the text editor’s job.) but you should recognize the word « ASCII».
The biggest advantage of this scheme is that almost any program
can read and write ASCII text.

Text editors can be wonderful programs. The biggest advantage is the
price. There is probably already one or more installed on your
computer. You can find a number of text editors for free on the
Internet. Text editors are generally very easy to learn. Since they don’t
do a lot of fancy things, they are generally less intimidating than
full fledged word processor packages with all kinds of features.
Finally, text editors are pretty universal. Since they almost all use
the ASCII standard, you can read a text file written on any text
editor with just about any text editor. This is often not the case
when using fancier programs.

The ability to write ASCII text is the biggest benefit of text
editors. ASCII is also the biggest disadvantage of most text editors.
It is a very good way of storing text information, but it has no way
of handling more involved formatting. Text editors generally do not
allow you to do things like change font sizes or styles, spell
checking, or columns. (If you don’t know what those things are, stay
tuned. We will talk about them later in this chapter.)

Text editors aren’t all simple, though. Text editors are actually the
workhorses of the computing world. Most computer programs and web
pages are written with specialized text editors, and these programs
can be quite involved. You won’t need to learn any hard-core text editors
for this class, but you may end up learning one down the road.

If all you want to do is get text written, and you aren’t too
concerned about how fancy it looks, text editors are fine. (In fact,
this book was written entirely in emacs, a unix-based text editor.)

Common text editor programs:

  • Windows: Notepad
  • Macintosh: SimpleText
  • Linux: vi, emacs
  • Multi-platform: notepad++, jedit, synedit, many more

Integrated Packages

Frequently these software packages are included when a person buys a
new computer system. An integrated package is a huge program that
contains a word processor, a spreadsheet, a database tool, and other
software applications in the same program. (Don’t worry if you don’t
know what a spreadsheet or a database is. We’ll get there soon
enough!) An integrated application package is kind of like a «Swiss
army knife» of software.

The advantages of an integrated package derive from the fact that all
the applications are part of the same program, and were written by the
same company. It should be relatively easy to use the parts of an
integrated package together. These programs tend to be smaller, older
versions of larger programs, so they might be less complicated to use.
Since they were presumably written together, they should all have the
same general menu structure, and similar commands. (The command to
save a file would be the same set of keystrokes in all the programs,
for example.) Integrated packages are often designed with casual
users in mind. This might make them easier to use than more robust
programs. The word processor built into an integrated package is
probably more powerful than a typical text editor. Integrated
packages are often already installed on new computers, so they might
not cost you any more than the original purchase price of the
computer. The word processor on an integrated package will almost
certainly give you some features you would not expect to find on plain
text editors.

Integrated packages have some disadvantages. With the advent of
graphic user interfaces and modern operating systems, programs have
become more and more standard even if they were written by completely
different companies. Almost every program for Windows uses Alt-F-S to
save, for example. Also, as in the Swiss army knife analogy, the
programmers had to make some compromises in order to make all the
applications fit in one program. A Swiss army knife does contain a
saw, but if you had to cut down a tree, wouldn’t you rather use a real
saw? The programs in an integrated package are usually stripped down
or older versions of the company’s high end software. They certainly
have fewer features, and might be less friendly. Word processing
programs that are part of integrated packages generally have their own
special code for storing text information, although they can usually
read and write ASCII as well. (However, if you choose to save in
ASCII, you cannot save all the special formatting commands).

Common Integrated Packages:

  • Microsoft Works
  • Lotus Works
  • Claris Works

Today the trend is to package all the high-level programs together, so
MS-Office and OpenOffice.org both contain fully-featured Word
Processors, Databases, Spreadsheets, and more.

High-End Word Processors

Word processing programs have evolved a great deal from the early
days of computing. A modern word processing program can do many
things besides simply handling text.

Since the early ’90s, most word processors feature a WYSIWYG
interface. WYSIWYG (pronounced «whizeewig») stands for «What You See
Is What You Get.» This means that the screen will look reasonably
like the printed document. This feature is important because the
real strength of word processors is in the formatting they allow.
Formatting is the manipulation of characters, paragraphs, pages, and
documents. Most of the word processor features we will discuss below
are various ways of formatting the text, or changing the way it looks
on the page. Formatting was possible before WYSIWYG, but it required
more imagination from the writer, because you couldn’t see the effects
of the formatting until you printed out the document.

Modern word processors also are designed to have numerous features for
advanced users. Since a large portion of most people’s computer time
is spent with a word processing program, it is important that these
programs have features to make editing documents easier. Some of the
additional features that one can expect to find on a modern word
processor are spelling and grammar checkers, ability to handle
graphics, tables, and mathematical formulas, and outline editors. The
word processing market is a very competitive one, and the major
software companies are always competing to have the word processor
with the most advanced features available.

Software companies are also interested in making their programs as
easy to learn as possible. With this goal in mind, most word
processors come with tutorial programs, extensive on-line help, and
clear menus.

These full featured word processors sound wonderful, and they are.
You might wonder if they have any drawbacks. Of course they do.
Word processing programs as have been described often cost hundreds of
dollars. The cost seems prohibitive for something that doesn’t even
have a physical presence! Many of the features of full-fledged
word processors are not needed by casual users. Sometimes the sheer
number of unneeded features can be intimidating. Using a full-power
word processor just to write a couple of letters a week is like
killing flies with a chain saw. You simply might not need that much
power to do the job properly. High end word processing programs
almost always save documents in special proprietary codes rather than
as ASCII code. This means the programs can save all the special
formatting that ASCII cannot handle (like font sizes, columns,
graphics, and so on.) It also means that if you write a document in
WordPerfect, you may not be able to read it in Word. Even
different versions of the same program might not be able to read each
other’s documents directly. There are ways you can work around this
problem, but you should know it exists.

High-end Word Processing Packages:

  • WordPerfect
  • Microsoft Word
  • OpenOffice.org Write

Ironically, there is now a trend away from WYSIWYG towards
«semantic markup.» The idea is not to put all the formatting details
in place, but to explain the meaning of the text in the document. The
actual markup of each meaning is defined in a separate document. For
example, here’s the semantic markup of this paragraph:

<p class = "update">
Ironically, there is now a trend away from WYSIWYG towards
"semantic markup."  The idea is not to put all the formatting details
in place, but to explain the meaning of the text in the document. The
actual markup of each meaning is defined in a separate document.  For
example, here's the semantic markup of this paragraph:
</p>

In another part of the document I describe how to format «updates»:

  .update {
    border: 1px black solid;
    background-color: #FFFFCC;
    padding-left: .5em;
  }

It’s completely OK if you don’t understand any of the code. The
important idea is how markup can be separated from meaning.

Desktop Publishing

Another classification of programs you should know about has an
uncertain future. These programs are called desktop publishing
applications. Desktop publishing takes text that has already been
created, and applies powerful formatting features to that text.
Traditionally, applications that allowed the integration of text and
graphics, and allowed the development of style sheets were thought of
as desktop publishing. Such a program makes it easy to create other
kinds of documents rather than just plain pages. With a desktop
publisher, there are already style sheets developed to help you create
pamphlets, cards, signs, and other types of documents that you wouldn’t
be able to create on a typewriter.

The higher end word processing programs give you most of the features
you could want in a desktop publishing program. It is possible to do
many of the same things. Desktop Publishers are still very popular in
certain specialty fields (graphic arts, printing, and publishing,) but
the effects can be duplicated with skillful use of a word processing
program.

Common Desktop Publishing programs:

  • Pagemaker
  • Microsoft Publisher

Sign / Banner Programs

Another level of desktop publishing that has become very popular is
the advent of specialty printing programs such as «The Print Shop» or
«Print Master +». These programs are designed specifically to help the
user create signs, banners, and greeting cards. They are very easy to
use, and much less expensive than full-feature desktop publishing
applications, but again the effects can be duplicated with a higher
end word processor.

How Do You Choose Which Word Processor You Use?

As always, the critical question is: «What kinds of problems are you
trying to solve?» For most beginners, the lower end word processor
that came with their computer is a fine start. If it does what you
need, and you are happy with it, don’t spend money unnecessarily.
Many people find that if they do a lot of writing, they begin to yearn
for the features of a more powerful word processing program. As you
gain experience, you will find a favorite program and learn its
commands and idiosyncrasies well. You will find if you concentrate on
the concepts, that all word processors of a certain level are pretty
much the same, although the exact layout and command structure may
differ. You will also probably discover if you do a lot of writing
with the computer that you have several programs you use
interchangeably. A skilled computer user often chooses the program to
solve a specific problem much like a golfer chooses a different club
for each type of shot. Sometimes a text editor is sufficient, and
sometimes only the best, most powerful, and most expensive program
will do the job properly. Learning what is best for you is part of
the process.

Layout of Word Processors

Word processing programs of any type usually share the most basic
features. They universally reserve most of the screen for the text
being edited. Most word processing programs also contain a
menu structure with most of the programs commands available in a
hierarchical organization scheme. Many word processors have graphic
toolbars with icons representing the most critical commands. Almost
all such programs have scroll bars or some other mechanism for
allowing the user to move around in large documents. All word
processors also have a cursor, which is usually a small box or line,
which shows the user where in the document she is currently typing.

Commands Available In Most Word Processing Programs:

Different types of word processing programs will have different
commands available. Generally, text editors have the fewest commands.
More complex programs often start with the same types of commands and
add to them. Commands may be available in a number of ways; by
locating them on the menu system, by looking up shortcut keys, or by
pressing an icon on a graphic tool bar. If in doubt, utilize the
on-line help to locate the command you want.

File Handling Commands

Any level of text editor or word processor will have commands to save,
load, and print your text. These commands are so frequent that you
will usually see many ways to invoke them.

Save Document
Allows you to save your document onto some kind of disk.
If you have already saved this document at least once, it will save
the document to the same drive, directory, and file name you used last
time. Saving a document really means making a copy of the codes in
memory that represent the document, and copying those codes onto a
disk file. If you have never given this document a name, a Save
command often acts like a Save As. (see below) You might also look for
a Write command, a picture of a disk, or a Save As command.
Save As…
Often you will see this command in addition to a save command. There
is a subtle difference between the two commands. Save As {it always}
asks you for the name and location of your file. Most of the time,
the Save command does not ask for this information. If the Save
command does not know what to call the file (because you have never
saved it before) it will automatically invoke a Save As. The only
time you absolutely must use a Save As is when you want to load a
file, make some changes to it, and save it as a NEW file with a
DIFFERENT name. If you use the Save command, the new changes will be
written on top of the old document. With Save As, you can force the
changed document to be in a new file. This really doesn’t happen very
much. Many people spend their whole lives using nothing but Save.
Load or Open
You will almost always see a command that allows you to open or load a
document. These terms usually mean the same thing. You will usually
get some sort of a dialog box asking you for the directory and file
name of a text document, and the program goes to the disk, grabs the
file, and loads it into the editing area of the screen. (Actually, it
loads the file into memory, and then shows a copy of the memory onto
the screen.)
Print
A print command takes the document and copies it to the printer.
Obviously, for this to work, you must have a printer attached to your
machine. There are occasional variations to this command. You might
get a dialog box that asks you which pages to print, how many copies you
want, which printer you want to use (if more than one is set up on
your computer), and so on. You might also see a Print Preview command
that shows a picture of what the page will look like when printed.
This is especially useful when you are using a program that does not
support WYSIWYG.

Editing Commands and Block Manipulation

There are a number of commands you will find on nearly any word
processor that enable you to manipulate text in special ways.
Frequently you will find these commands on an Edit menu. The editing
commands are based on a concept called block manipulation.

Block manipulation simply means taking a «chunk» of text and marking
it in some way so it can be treated as one unit. Once a block of text
is marked as such, it can be deleted or manipulated easily.

Marking a Block
Many modern programs allow you to mark a block of text with the mouse.
Simply point the mouse at the beginning of the text you want to mark,
hold down the mouse button, and drag to the end of the block. You
will probably see the text you have dragged over change color. Some
programs put highlighted text in inverse video. Many programs also
allow you to select text with the Shift key and the arrow keys in
combination. This is sometimes more precise than the mouse
techniques. Some older programs require you to move the cursor to the
beginning of the text, mark it as the beginning of a block, move to
the end of the text you want to manipulate, and mark it as the end of
the block. Learn how your program does it. It is worth the effort.
Copying a Block
You will usually find some kind of command called Copy. It only works
after you have marked a block of text. Copy by itself doesn’t do
anything on the screen, but it is still a very important command.
What it does is to take the block of text and make a copy of it in a
special part of memory called the clipboard (or sometimes the buffer).
The copy command does not change the original text; it just places a
copy of the text in the clipboard.
Cutting a Block
Cutting is very similar to copying. You must start by marking a block
of text. When you activate a cut command, the original block will
disappear. It isn’t gone forever, though. A copy of it has been made
in the clipboard.
Pasting a Block
The paste command doesn’t make much sense until you have cut or copied
a block of text into the clipboard. The paste command copies the
contents of the clipboard into the document at whatever point the
cursor was sitting when the paste command was activated.
How Block Manipulation Works
These commands really need to be used together to be useful. Which
ones you use depend on the kind of problem you are trying to solve.
If you had to write «I will not talk out in class» 100 times, you
might write the phrase once, mark it as a block, copy it, and then
paste it 99 times.

If you have written a document and realize that the last line really
belongs at the beginning of the document, you might mark the line you
want to move as a block, cut the block move the cursor to the
beginning of the document, and activate the paste command.

Formatting Commands

Another set of commands are found less frequently on text editors, but
are common on higher-level word processors. These commands are for
formatting various elements of a document. You may find a format
menu. Many of these commands also are available on toolbars.

Formatting a Character

A character is one letter or other symbol. There are many ways to
format characters in word processing programs. It is possible to make
characters bold, italic, underlined, or perhaps some other attribute.
Not all word processors will do all these things, but most will do
bold, italic, and underline. Often you activate the command by
choosing it from a menu, clicking on a toolbar icon, or activating a
key sequence. Once you have started the command, anything you type
will be typed in that style. When you want to go back to standard
letters, you activate the same command again. Commands that turn off
and on like this are called toggles, because they are reminiscent of
toggle switches. Many word processors allow you to enter the text
without any format, then to select a set of characters as a block
(like you did to copy and paste), then to activate the command.
Experiment with your word processor to see how it works.

Word processors that feature WYSIWYG frequently support the use of
fonts. A font is defined in computing as a combination of a special
character set and type size. In the typewriter world, you were pretty
much stuck with the size and style of letters the typewriter came
with. Some of the later typewriters had the characters on a ball you
could change, but you still had very little control of exactly how the
letters looked. In a modern word processing application, you have a
great deal of control. You can choose different type faces that look
like script, handwriting, Old English, or whatever. After you have
chosen a basic look for your letters, you can choose what size the
letters are.

Fonts are measured by typesetters in points. 72.25 points is
equivalent to an inch. Most standard text is 10 points. A newspaper
headline might be 200 points. You may be able to control other
attributes of each letter, such as its color, a shadow, and other advanced
features.

Formatting Paragraphs}

Most writing is organized into paragraphs. These divisions make a
document easier to read. There are ways you can control how
paragraphs look on the screen. You can control how your program
handles indention. You can often force the computer to indent the
first line of every paragraph automatically. You can also frequently
control the line spacing inside the paragraph, the amount of spacing
between paragraphs, and the justification.

Justification refers to how the text is lined up between the margins.
Most documents created with a typewriter or word processor are
left-justified. That means that the left margin is lined up perfectly, but
the right margin is a little ragged. The computer keeps track of the
right margin for you when you use a word processor, so you don’t have
to press the «Enter» key at the end of every line (in fact you
shouldn’t press «Enter» at the end of every line. The only time you
should press «Enter» is when you want to end a paragraph!) The
automatic process the computer uses to send text to the next line is
called word wrap. If you want to have the right margin line up
cleanly, but let the left one be a little ragged (Maybe as you type
the return address and date of a business letter) you can choose a
right justify command. If you look at books and magazines, you will
see that both the right and left columns are justified. Many word
processors will allow you to justify both margins. This works by
adjusting the amount of space between letters and words so the margins
work out perfectly. The computer does it automatically when you ask
it to do so. Another form of justification is centering. When you
center a line, you tell the program to give it equal left and right
margins, regardless of the length of the line. Centering is useful
for headlines, but is often distracting when used for body text.

The other major element of a document is the page. There are some
page formatting commands you should be able to find in any word
processor as well. You will probably have some way to adjust the
margins of the page. Note that there are top and bottom margins, as
well as left and right margins.

You can also frequently find some kind of header/footer command.
Headers and footers are special areas at the top and bottom,
respectively, of the page. These areas are not used for regular text,
but reserved for special things like a title at the top of every page,
page numbers, and footnotes. You will have to experiment a little
to see how your word processor handles these features, but they are
well worth learning. You will never go back to the old way of writing
footnotes once you have mastered using footers to automate the
process.

One more page formatting command you might find useful is page
orientation. Many word processors allow you to choose how information
is printed on the page. The «up and down» orientation we are used to
seeing on typewritten documents is called portrait mode. (If you
think about painted portraits, they are usually up-and-down rectangles.)
When your document is printed «sideways» it is referred to as landscape
mode. (Landscape paintings are often oriented in this way.)

       __________
       |  ___   |       ________________
       | /o o  |       |              |
       ||  L  | |       |    /WWW     |
       ||___/| |       |  /          |
       |    /  |       |/            |
       |_/_____|       |______________|
       Portrait             Landscape
         mode                 mode

Most of the time you should use portrait mode, but sometimes landscape
mode is appropriate, especially when you are doing something special
like tables, graphics, or fancy desktop publishing.

Commands Found in More Advanced Programs

High-End Formatting Tools

There are a few more elaborate formatting tools generally found
only in the higher end word processors. These tools border on desktop
publishing, and allow you better control of your document. You
probably won’t use them every day, but they are wonderful when you
need them.

Tables
On a typewriter, creating a table required judicious use of the TAB
key and very careful planning. Most advanced word processors allow
you to create tables very easily. You can usually select the number
of rows and columns, change the size and format of rows and columns,
and easily copy and paste specific cells. The table tool is worth
learning.
Columns
Sometimes you will want to have a page formatted into two or more
vertical columns. This was quite tedious on a typewriter, but there
is usually some kind of tool to make column creation easier on a
modern word processor.
Lists
You will frequently find tools for making lists. Lists can have
automatic numbering (like an outline) or each list item might have a
small icon marking, called a bullet. Most modern word processing
programs have some kind of tool to make list management easier.
Graphics
Most high-end word processing programs enable you to incorporate
graphics into text documents with relative ease. Often they
incorporate small painting programs so you can generate your own
graphics as well. To make graphics and text easier to work with, many
word processing programs include frames, which are boxes on the screen
that can hold text and graphics. When you mix text and graphics on a
page, you may want to investigate frames in the on-line help so you can
have more control over how the text and graphics interact.

Composition Tools

Many word processors have other advanced features that help a writer
with the mechanics of writing properly. These tools can be
instrumental in avoiding common writing mistakes.

Spell Checking
A spell checker is a program that looks at a document and compares
each word in the document to an electronic dictionary. If it finds
the word in the dictionary, it moves on to the next word. If it does
not find the word, it stops and asks the user for guidance. Good
spell checkers try to guess what word the user was trying to type and
make suggestions. Even if you are a very good speller, you should get
in the habit of running your materials through a spell checker. It is
a quick and relatively painless way to keep typos from marring your
paper.

Keep in mind that spelling checkers are not perfect, and they cannot
catch every mistake. The following poem excerpt points out the
problem:

				Ode To The Spell Checker

                             I have a spelling checker. 
                              It came with my PC. 
                          It plane lee marks four my revue, 
                           Miss steaks aye can know sea. 
                            Eye ran this poem threw it, 
                            Your sure reel glad two no. 
                           Its vary polished in it's weigh, 
                            My checker tooled me sew. 

    

(This poem can be found in its entirety at:
http://selma.ucd.ie/~pdurkin/Jokes/spellcheck.html It is attributed
to Jerry Zar, the Dean of the Graduate School, NW Ill. U)

Grammar Checkers
There are also tools available on most high end word processors that
will check your grammar for common mistakes. Grammar checkers are
wonderful at catching mechanical problems like incomplete sentences
and subject-verb agreement. Grammar tends to be more subjective
than spelling, so the advice of a grammar checker might or might not
be useful to you. It is worth running to check your mistakes, but it
will never replace the lessons you learned from your English teachers
or a skilled editor. When grammar checkers first came on the market,
a reporter tried testing the Gettysburg Address by Abraham Lincoln.
The program gave the speech extremely poor marks. Many people
consider it to be one of the most beautiful passages of American
English ever. Use a grammar checker if you have one, but also use
your judgment.
Outline Editors
These features allow you to organize your thoughts in outline format.
The advantage is that you can choose to see only your main ideas or
headings, and have all the text hidden. This feature allows you to
move the main headings around and all the text associated with the
headings will automatically move appropriately. If you are going to
do term papers or other serious writing, you should investigate this
feature.

Vocabulary/Important Ideas

Word Processing
A type of software that specializes in handling text. Word processing
programs typically contain commands for handling and formatting text
documents.
Insert/Overwrite Modes
Most word processors allow you to choose one of these modes. When you
are in {bf insert} mode, any text you type is inserted into the
document at the cursor position. {it Overwrite} mode also types text
at the cursor position, but it writes over the top of existing text,
much like a typewriter with correcting tape. Most experienced word
processor users prefer insert mode for most of their work.
Text Editors
A classification of word processing software characterized by its low
cost, ready availability, tendency to work only in ASCII format, and
inability to do high-powered formatting.
ASCII
American Standard C}ode for Information
Interchange. A standard convention used to encode text, numbers, and
common punctuation in numeric format so they can be stored in a
computer’s memory. Nearly all computers and programs can work with
some form of ASCII. Text editors are designed especially to work with
ASCII-based documents.
Integrated Packages
Programs that contain all the major applications within one «super
application». These programs are useful, but often lack some of the
more advanced features of full-fledged application packages.
WYSIWYG
What You See is What You Get.
A capability often found on higher-level word processing
programs. The screen mimics the output of the printer, so the typist
can see pretty much what the final output of the document will be.
Proprietary
The term {it proprietary} is frequently used when discussing software to
denote a certain idea that is particular to a specific brand of
software. When a program uses a proprietary scheme to save word
processing documents, for example, other programs may not be able to
read these documents without some kind of translation.
Desktop Publishing
A classification of word processing software that concentrates on
incorporation of graphics, powerful formatting, and development of
complex styles including newsletters, signs, and pamphlets.
Style Sheet
In desktop publishing, a template that specifies how a certain type of
document will be created. Style sheets are used to define a uniform
look and feel for documents of the same general type. For example, a
company might issue a standard style sheet for intra-corporation
memoranda. Many high-end word processors incorporate this feature.
Sometimes style sheets are referred to as templates.
Scroll Bars
Horizontal or vertical bars which indicate the cursor position in a
document. Usually scroll bars can be used with the mouse to
facilitate moving through the document.
Cursor
A small mark on the screen, usually a rectangle, underline, or
I-shaped design. The cursor indicates the exact position within the document
(and memory) where any commands and typing will be executed.
Save
The Save command saves a document without prompting for the file
name, unless the file has never been saved before. If this is the
case, it invokes a Save As command instead.
Save As
This command always prompts for a file name. It is used when
you want to save the changes to file without changing the file already
saved on the disk.
Load (or Open)
This command prompts the user for a file name, then loads the document
into the application.
Print
A print command is used to send a copy of the document to the
printer.
Print Preview
This command is especially useful in non-WYSIWYG environments. It
allows you to see a preview of the document exactly as it will be
printed. It is often a good idea to invoke this command before you
print a document, to be sure it will turn out exactly as you plan.
Block Manipulation
The process of defining a section of text so it can be copied, pasted,
or otherwise manipulated as one unit.
Copy
A copy command takes a block of text and copies it to a memory
buffer without removing the original text. Used to it
duplicate sections of a document.
Cut
This command copies a block of text to a memory buffer, and removes
the original text from the document. Used to {it move} sections of a
document.
Paste
This command takes the block of text last placed in the buffer by a
cut or copy command, and inserts it into the document at the current
cursor position.
Formatting
The process of defining how a document will look. Formatting can
occur at the character level, as well as at the paragraph and page
level.
Character Attributes
The special modifications to letters, such as {bf boldface} and {it
italic}
Font
The combination of character set and size that defines how an
individual character looks. Most word processing packages allow the
user to choose from many fonts.
Toggle
A command is referred to as a {it toggle} if repeated execution of
the command causes something to switch between two modes. Insert
and Overwrite modes are good examples of toggles. Often character
attributes are also considered toggles.
Point
A point is a type setter’s measurement of character size. Officially,
there are 72.25 points to an inch.
Justification
The way the lines of text are arranged on the page. The usual options
are left-justified, right-justified, centered, and both-justified.
Left-Justified
The text is lined up so that the left margin is even. The right
margin will not be even in left-justified text.
Right-Justified
The text is lined up so that the left margin is ragged, but the right
margin is even. Often used to line up dates and return addresses on
business letters.
Both-Justified
The text is lined up so that both the left and right margins are lined
up, as in a newspaper or magazine.
Centered
The text is lined up with an equal distance from the left and right
margins. Usually used in headlines.
Word Wrap
A behavior of word processing programs which automatically moves words
too large to fit the current line onto a new line. Eliminates the
need to press «return» at the end of each line.
Headers, Footers
Special areas at the top and bottom of word processing documents.
These sections are reserved for information that will appear on {it
each page} of the document. Usually page numbers, document name, or
document author will be in the header/footer area. The footer is
also useful for holding footnotes.
Landscape Mode
Documents in this mode print the long part of the page horizontally, as
in a landscape painting.
Portrait Mode
Documents in this mode print the long part of the page vertically,
as in a portrait painting.
Table
A section of a document organized into rows and columns. Higher-end
word processors often have a number of tools to help make tables
easier to create and manage.
Column
Vertical separation of text into two or more sections. Newspapers and
newsletters are often arranged in columns. High-end word processing
programs and desktop publishing programs usually include some tools to
make column manipulation easier.
Spell Checker
A feature of higher-end word processing programs that compares each
word in a document to a dictionary of proper spellings. Most spell
checkers «guess» which word the user was trying to type and give the
user some guesses to choose from.
Grammar Checker
A feature in word processing programs that checks a document for
common grammatical errors. Grammar checkers can also grade documents
for readability and complexity. Sometimes grammar checkers are
separate programs.
Outline Editors
A feature or program that easily enables the user to create and
manipulate outlines. Most of these programs allow you to hide the
body text so you can see and modify the subject headings. The
associated body text is automatically moved with the appropriate heading.

Summary

Word processing programs are a type of software that make
it easier to create and modify text documents. Word Processing
applications are organized into a number of categories according to
their complexity: Simple programs that manipulate ASCII are called
Text Editors. More complex programs that feature formatting commands
are called Word Processors. Some word processors are included in
integrated application packages, which also feature other application
programs. Such packages are convenient, but may not have all the
features of larger programs. Full-featured word processing programs
contain many options for formatting text and documents. They also
might contain special utilities for more complex formatting and
composition. Desktop publishing programs are designed for more
complex formatting, especially the integration of text and graphics.

Most word processing programs contain the same types of commands,
although the exact ways to access these commands may vary. You will
almost always see file handling commands, including commands to Load,
Save, Save As, and Print. Frequently, you will also see commands for block
manipulation, including Copy, Cut, and Paste. More advanced programs
may contain special commands for formatting characters and paragraphs,
as well as other commands to deal with tables, columns, and lists.
The fanciest word processing programs may also contain commands to
assist with composition, such as spelling and grammar checkers and
outline editors.

Hello Learners, Today we will know the important features of the word processor.

In this post, I will explain in features of word processing software in detail.

This Article is the Best on the whole internet.

If you read this article carefully you will understand all about the word processor — features, uses, and advantages.

I Guaranteed you, after reading this article you will not need to read any other Articles. In fact, our readers are satisfied with this blog post.

Note — The only purpose of this article is to tell you about word processor features in very simple language. This article has been written by an expert, if you think this article can be improved further, then you must give us feedback.

What is Word Processor?

Word Processor is system software. With the help of word processor software, you can easily create any type of document. This software is very helpful for office work. There are various office employees who use this software to do their own work.

Microsoft Word is a very popular word processor software.

What are the Features of Word Processor?

There are various important features of word processor software, which features names are given below.

Word Processor Features

1. Easy Typing

You can type very easily using a word processor. Word processor provides you with many features to create a document so that you can type any type of document.

Word processor gives you more features in typing anything than typewriter-like — word processor has unlimited pages. You keep typing and as soon as the first page is over, the word processor lets you type on the new page.

While you are typing on the typewriter, you have to enter another page as soon as the page ends.

Everything you type in the word processor is visible to you so that you can also correct it if the wrong word is typed. But there is no such facility in the typewriter that you can correct the wrong word.

2. Text Copy

Copy is also a great feature of the word processor, using which you can copy any text. The copy feature is there in all types of word processors.

With the use of copy features, you can use the same text multiple times in the document without writing it, which saves you time as well.

3. Text Cut

The cut is also a great feature of the word processor, using which you can cut any text in the document. The cut feature is completely different from the copy feature.

For example, by using the copy feature, the copied text is in both the places in the document, such as — from where you copied your text and where you pasted the text, while the cut text is removed from the part of the document where The text is cut from.

4. Paste

The paste is also a great feature of the word processor, using which you can paste any copied or cut text on any part of the document. Any text is copied or cut only for pasting.

5. Multimedia

Multimedia is also a great feature of the word processor, using which you make your document more attractive.

Using multimedia features, you can insert multimedia in your document like — clip art, charts, images, pictures, video, etc.

6. Text formatting

Text formatting is also a great feature of the word processor, using which you can make your document more beautiful.

Using text formatting features, you can change the font of the text of your document, the size of the text, and the color of the text and you can also bold, italicize, and underline your text.

7. Spelling and Grammar

Spelling and Grammar is also a great feature of the word processor, using which you can check the spelling and grammar errors of the document.

8. Adjust the Layout

Adjusting the layout is also a great feature of the word processor, using which you can modify the margins, size, and layout of the document according to your need.

9. Find

Find is also a great feature of the word processor, using which you can find any word or sentence in the document. This feature helps you a lot, just imagine if your document is 100 to 150 pages.

If you have to find any word or sentence, then it will take you a lot of time, but you can find that word or sentence in a few seconds using the find features.

10. Search and Replace

Search and Replace is also a great feature of the word processor, using which you can find any word or sentence in the document and replace that word with a new word using the replace feature.

If your document is 100 to 500 pages, then imagine how much time and effort it will take to manually replace a word. But using the Search and Replace feature, you can replace any word or sentence with a new word or sentence in a few seconds.

11. Indentation and lists

Indentation and lists are also a great feature of the word processor, using which you can add tabs, bullet lists, and number lists to the document so that your document looks more beautiful.

12. Insert tables

Insert tables is also a great feature of the word processor, using which you can insert tables in the document.

13. Multiple Windows

Multiple windows are also a very good feature of a word processor, using which you can open multiple windows in word processor software. This feature is used by people to use more than one-word processors windows at the same time.

In a word processor, you have to press the ctrl and N buttons simultaneously to open more than one window.

14. AutoCorrect

AutoCorrect is also a great feature of word processors using which to automatically correct any common errors in your document like — (typing «teh» and having it autocorrected to «the»).

15. Headers and Footers

Headers and footers are also a great feature of the word processor, using which you can add anything according to your need in the headers and footers of your document like — page numbers, dates, footnotes, etc.

16. Mail Merge

If we want to send the same information to different people at the same time, then there is a feature in the word processor using which we can do that and that feature is named mail merge.

Using mail merge, the body of the letter is typed once and it is sent to different addresses.

There are various advantages of word processor software, which are given below.

  • Quality
  • Storage of Text
  • Security

1. Quality

Word processor helps us to create error free documents. Every document prepared through word processor is absolutely correct in spelling and grammar, there is no possibility in it, and word processor allows us to make many copies of the same format.

2. Storage of Text

In word processor we can create of any number of page document and in word processor we can copy any word or sentence any number of times.

You can also use it by making some changes in any old word file in the word processor, for which we do not need to create a new word file.

3. Security

In a word processor, we can secure any document while creating it. As soon as someone opens that document, he asks for password before opening the document, and only after entering the correct password, the document will open.

Uses of Word Processor

There are various uses of word processor software, and this word processor are used in different fields which are — education field, planning or business-related works, for making assignments and home, etc. 

With the use of this word processor software, you can do many things, whose names are given below.

  • Memos.
  • Making Card.
  • Letter writing
  • Legal Copies.
  • Making resume/CV.
  • Letters and letterhead.
  • Reference documents.
  • writing short stories.

I hope you understand this.

Updated: 07/06/2021 by

Microsoft Word

Sometimes abbreviated as WP, a word processor is a software program capable of creating, storing, and printing typed documents. Today, the word processor is one of the most frequently used software programs on a computer, with Microsoft Word being a popular choice.

Word processors can create multiple types of files, including text files (.txt), rich text files (.rtf), HTML files (.htm & .html), and Word files (.doc & .docx). Some word processors can also be used to create XML files (.xml).

Overview of Word

In a word processor, you are presented with a blank white sheet as shown below. The text is added to the document area and after it has been inserted formatted or adjusted to your preference. Below is an example of a blank Microsoft Word window with areas of the window highlighted.

Microsoft Word document diagram

Features of a word processor

Unlike a basic plaintext editor, a word processor offers several additional features that can give your document or other text a more professional appearance. Below is a listing of popular features of a word processor.

Note

Some more advanced text editors can perform some of these functions.

  • Text formatting — Changing the font, font size, font color, bold, italicizing, underline, etc.
  • Copying, cutting, and pasting — Once text is entered into a document, it can be copied or cut and pasted in the current document or another document.
  • Multimedia — Insert clip art, charts, images, pictures, and video into a document.
  • Spelling and Grammar — Checks for spelling and grammar errors in a document.
  • Adjust the layout — Capable of modifying the margins, size, and layout of a document.
  • Find — Word processors give you the ability to quickly find any word or text in any size of the document.
  • Search and Replace — You can use the Search and Replace feature to replace any text throughout a document.
  • Indentation and lists — Set and format tabs, bullet lists, and number lists.
  • Insert tables — Add tables to a document.
  • Word wrap — Word processors can detect the edges of a page or container and automatically wrap the text using word wrap.
  • Header and footer — Being able to adjust and change text in the header and footer of a document.
  • Thesaurus — Look up alternatives to a word without leaving the program.
  • Multiple windows — While working on a document, you can have additional windows with other documents for comparison or move text between documents.
  • AutoCorrect — Automatically correct common errors (e.g., typing «teh» and having it autocorrected to «the»).
  • Mailers and labels — Create mailers or print labels.
  • Import data — Import and format data from CSV, database, or another source.
  • Headers and footers — The headers and footers of a document can be customized to contain page numbers, dates, footnotes, or text for all pages or specific pages of the document.
  • Merge — Word processors allow data from other documents and files to be automatically merged into a new document. For example, you can mail merge names into a letter.
  • Macros — Setup macros to perform common tasks.
  • Collaboration — More modern word processors help multiple people work on the same document at the same time.

Examples and top uses of a word processor

A word processor is one of the most used computer programs because of its versatility in creating a document. Below is a list of the top examples of how you could use a word processor.

  • Book — Write a book.
  • Document — Any text document that requires formatting.
  • Help documentation — Support documentation for a product or service.
  • Journal — Keep a digital version of your daily, weekly, or monthly journal.
  • Letter — Write a letter to one or more people. Mail merge could also be used to automatically fill in the name, address, and other fields of the letter.
  • Marketing plan — An overview of a plan to help market a new product or service.
  • Memo — Create a memo for employees.
  • Report — A status report or book report.
  • Résumé — Create or maintain your résumé.

Examples of word processor programs

Although Microsoft Word is popular, there are other word processor programs. Below is a list of some popular word processors in alphabetical order.

  • Abiword.
  • Apple iWork — Pages.
  • Apple TextEdit — Apple macOS included word processor.
  • Corel WordPerfect.
  • Dropbox Paper (online and free).
  • Google Docs (online and free).
  • LibreOffice -> Writer (free).
  • Microsoft Office -> Microsoft Word.
  • Microsoft WordPad.
  • Microsoft Works (discontinued).
  • SoftMaker FreeOffice -> TextMaker (free).
  • OpenOffice -> Writer (free).
  • SSuite -> WordGraph (free).
  • Sun StarOffice (discontinued).
  • Textilus (iPad and iPhone).
  • Kingsoft WPS Office -> Writer (free).

Word processor advantages over a typewriter

See our typewriter page for a listing of advantages a computer with a word processor has over a typewriter.

Computer acronyms, Doc, Microsoft Word, Software terms, Untitled, Word processing, Word processor terms, WordStar, Write

Word processing software helps you manipulate a text document and create or edit a text document.

  • Best 15 Word Processing Software Examples

    • 1. Microsoft Word

    • 2. iWork Pages

    • 3. OpenOffice Writer

    • 4. WordPerfect

    • 5. FocusWriter

    • 6. LibreOffice Writer

    • 7. AbiWord

    • 8. WPS Word

    • 9. Polaris Docs

    • 10. Writemonkey

    • 11. Dropbox Paper

    • 12. Scribus

    • 13. SoftMaker FreeOffice TextMaker

    • 14. Zoho Docs Writer

    • 15. Google Docs

  • Conclusion

A quality word processing software can also provide output options such as printing or exporting a text document into other formats.

Without word processing software, you would have difficulty processing paragraphs, pages, and even papers.

Not many people know that early word processing software was standalone devices, but word processors come as lightweight software that’s easy to install with technological advancements.

Another great advantage of word processing software is that it allows you to store documents electronically, display them across screens, or fully modify documents before printing them.

Even though word processing software isn’t complex to learn, it might take a bit of time to learn how to take full advantage of the software with so many functions.

Also, keep in mind that some word processing software comes from the office bundle that includes other processing software.

In this article, you’ll learn more about word processing software and see 15 of the best examples.

Whether you’re a writer, editor, or only need quality word processing software to prepare your documents pre-printing, at least one of these 15 software will be a good pick!

Even though most word processing software has similar features and offers similar benefits, the small but significant differences between these word processing software examples can make a huge difference for personal use.

1. Microsoft Word

The most known word processing software is Microsoft Word, and chances are high you’ve used it at least on one occasion to process or create text documents.

Word is the most known word processing software because the creator of Windows creates it and it often comes integrated with the Windows operating system.

However, Word is also known for the benefits it offers. Improved search and navigational experience combined with the ability to work with others simultaneously are just some of the benefits.

Along with that, Word gives you the ability to access, share, and work on your documents from almost anywhere.

With plenty of options to create, edit, and process text, Word also has additional visual effects, turning text into diagrams, and combining visual aspects into text documents.

Instant help when creating documents is another great integration that especially helps writers. Exporting and having document flexibility is helpful when producing specific documents for your studies or work, and it’s just one of many benefits of Word.

2. iWork Pages

iWork Pages is a must-have word processing software for Apple users. Even though Microsoft Word is available for macOS, iWork is a great native alternative that helps Apple users process, create, and work with word documents.

iWork Pages was previously known as AppleWorks, and it is part of the official Apple iWork suite.

Not only Pages can help you create documents, but they can also help you to collaborate with others efficiently, create animated documents from your data, and even build interactive charts from your text.

What’s great about Pages is that it comes with built-in help and sample formulas, so you don’t always have to create a document from scratch. Instead, you can use templates or benefit from function suggestions to improve the way you work.

With over 30 spreadsheet templates, you won’t have to create text documents from scratch unless you enjoy creating your work from scratch. Templates can help you spend less time formatting and creating the basics of your document and yet leave you with more time to focus on your text.

3. OpenOffice Writer

Among the paid word processing software, there are a couple of free gems such as OpenOffice.

OpenOffice is a free and open productivity suite that includes Writer, the perfect software for word processing.

Whether you’re trying to draft a quick letter or working on complex text documents (maybe even writing a book), the writer is a reliable and fully equipped word processing software to handle all needed tasks.

What’s great about Writer is that it is very easy to use, so you won’t have to spend hours learning the ins and outs of the software to take full advantage of it.

Instead, you will be able to focus on producing documents of all types and letting Writer help you along the way.

With built-in features such as AutoCorrect or AutoComplete, you can quickly write your documents without having to worry about making mistakes.

Along with these two features, OpenOffice Writer comes with a table of contents, references, multi-page display, and notes to help you annotate and review documents, as well as create well-structured text documents.

Lastly, exporting isn’t going to be a problem since Writer can help you export your text document into other formats such as HTML, PDF, or even .odt.

Also, keep in mind that OpenOffice provides templates you can download and use with Writer to make your drafts easier.

4. WordPerfect

WordPerfect is described as the Microsoft Office alternative. It is an all-in-one suite that focuses on productivity and efficiency when working with digital documents (especially text documents).

Inside the WordPerfect Office, you will have access to a neat and efficient word processor that can help you quickly draft new documents, create letters or brochures, write resumes, and even start writing a book.

What’s so special about WordPerfect is that it supports collaboration with about 60 file formats, so you can import and export documents from any third-party software.

With the help of Reveal Codes, WordPerfect provides seamless formatting after you import documents from any source.

And if you’re looking to “spice up” your text documents, you can do so easily with the help of built-in PDF forms into this powerful and versatile word processing software.

5. FocusWriter

If you spend a lot of time writing documents in your word processing software, and yet you find it hard to concentrate and focus on the words, FocusWriter is a great pick.

FocusWriter is a very simple word processing software that utilizes a versatile interface hidden away from the most important part of the software. This way, you can focus on the page and text, and whenever you need to use any integrated feature, all you have to do is swipe your cursor across the edges to open the hidden menu.

With integrated features such as timers, alarms, daily goals, fully customizable themes, and even the ability to use typewriter sound effects, this word processing software will help you stay on track and get things done.

Along with these features, FocusWriter has optional features such as live statistics, spell-checking, and even the ability to use FocusWriter in 20 different languages.

These features aim to improve the user experience and make word processing tasks fun and more productive since you can set your own goals.

This is a word processing software that adds improved features that aren’t very common among its competitors.

6. LibreOffice Writer

When you are a very organized person and need word processing software that will match this, LibreOffice Writer is worth trying.

LibreOffice Writer is a modern word processing software that ensures you can edit any document quickly with the help of integrated features.

Therefore, Writer is good enough for doing quick and simple edits. Still, it’s also more than enough to finish books, edit many content pages, add diagrams, and even feature indexes into your documents.

The user interface is very neat and even though there are many features they’re hidden away so you can focus on the most important aspect of word processing: the text.

7. AbiWord

When you require a very similar word processing software to Word, and yet you’re on a budget, AbiWord is a good choice.

AbiWord is compatible with the latest operating systems and interface-wise, it is very similar to Microsoft Word. Even though it’s not the “prettiest” word processing software, it has everything you might need to get the work done efficiently, and it won’t cost you a penny.

With compatibility to work with all standard text documents, AbiWord also allows you to share your documents with others easily or even merge your letters directly with your email.

Even though AbiWord might not have all features other word processing software include, AbiWord is built on the extensible plugin architecture, so you can always find plugins to include features you might be missing.

On top of that, I should mention that AbiWord is available in 30 different languages, and it is still getting updates so that you won’t be relying on an outdated version.

8. WPS Word

WPS offers a suite similar to Microsoft Office that includes three components: the Word, Excel, and Presentation.

Word is a word processing software that is highly compatible with almost all compatible document formats, and it is even compatible with all operations systems.

Creating documents from scratch with Word is very simple, and yet with standard formatting tools everyone is familiar with, editing documents is even easier.

On top of that, Word includes many extras that are rarely found in other word processing software, such as hundreds of document templates. Therefore, if you don’t feel like creating documents from scratch, basing your documents on pre-existing templates can save you a lot of time and work.

Combining media with text is highly possible, and viewing multiple documents simultaneously improves efficiency when working with multiple documents.

With collaboration tools, password protection for chosen documents, and automatic spell-checking tools, you can easily get your work done without worrying about accuracy.

9. Polaris Docs

Polaris Office is a combination of tools that includes Docs, a highly versatile version that’s very similar to a combination of Microsoft Word and Google Docs.

It’s a very versatile word processing software that allows you to work on your documents wherever you are.

Not only is it available as computer software, but it also has a dedicated web browser version and even the app version suitable for Android and iOS smartphones.

Collaboration is guaranteed with such versatility, and when it comes down to getting the work done, Polaris Docs supports all types of documents, including sheets, slides, and more.

Saved documents can be worked on in groups, meaning that more than one person can edit the document in real-time. And if you ever decide to collaborate on a document with someone, you can invite them with a link and keep the communication open with an integrated chat in the Polaris Docs.

Feature-wise, Polaris Docs is packed with the most standard features you would expect from a word processing software, and yet the main improvement is the way you can collaborate with others and work on the same document in real-time.

10. Writemonkey

If you search for a word processing document that will leave you on your own with your words and yet will hide all functionalities in a very minimalistic and simple interface, Writemonkey makes a great choice.

Writemonkey might look like a coding interface at first, but it is a stripped-down word processing software that helps you focus on your writing.

Of course, Writemonkey is also ideal for making quick edits and even reading.

This is probably one of the lightest and smallest word processing software that is very easy to install and even easier to get used to.

What’s also great is that you have full control over the interface to customize it to your needs. On top of that, you can set timed writing or even feature a visual progress bar to make your writing work feel like a breeze.

And if you ever end up missing something in Writemonkey, you can always introduce third-party upgrades to this word processing software via plugins.

11. Dropbox Paper

When you need a versatile, reliable, and quick word processing software that’s perhaps web-based, Dropbox Paper is worth considering.

Dropbox Paper is a lightweight web-based word processing software that allows simple editing and collaboration between teams.

With Dropbox Paper, you can create documents from scratch or import existing documents to easily track any edits or changes made by your team members. On top of that, with this light word processing software, you can keep everything organized, ensure feedback is properly given, and even improve your documents.

You can do almost everything in Dropbox Paper that you would do in other word processing software. However, Paper can also serve as a co-editing software.

Whether you’re trying to improve communication in your team, improve collaboration between team members, or you’re writing a book with your partner, Paper is the place to stay productive, organized, and efficient.

12. Scribus

If you require professional word processing software to handle your business/work documents or edit and prepare your book for publishing, Scribus is a great choice.

Even though it’s a bit different from standard word processing software, Scribus allows you to choose one of the designed layouts, set your typesetting, and even improve your written documents with professional-looking quality images.

With Scribus, you can also create animations that you can place directly inside your document, or you can turn your text documents into interactive PDF presentations.

On top of that, the creation of forms or questionnaires is very simple. With OpenType support, you can now edit your existing documents with advanced features such as advanced typography.

While Scribus is a great fit for simple editing and personal documents, it excels at creating magazine covers, newspaper front pages, preparing the books for publishing, and even manufacturing artwork.

It might not be the standard word processing software most people are looking for, but it will fit professional needs easily for a very fair price.

13. SoftMaker FreeOffice TextMaker

When you need a simple word processing software, SoftMaker FreeOffice is a great stepping stone that won’t cost you anything, and yet it includes almost everything you might need for personal or business use.

In the FreeOffice, you will get TextMaker included. TextMaker is a small but efficient word processing software that allows you to create all types of documents and edit existing documents that you can easily import.

What’s unique about TextMaker is that it doesn’t only focus on written documents. Instead, it also offers great features for processing words on graphics. Therefore, you can use TextMaker to create great text for your images, logos, or even banners.

With many different fonts, styles, and even wrapping options, TextMaker will make all your graphics look professional and attractive yet easy to read.

Since TextMaker can import almost all types of documents, you can also export your work in the most standard formats, such as Word DOC and DOCX. However, what’s also great about TextMaker is that it allows you to create PDF files from your documents.

You can even create an EPUB eBook with the help of TextMaker, which is a great feature, considering that SoftMaker provides the TextMaker for free.

14. Zoho Docs Writer

Zoho Docs Writer is a perfect example of an online word processing software that is easy to use and easy to access. Yet, in return, you will get very reliable and advanced features you can use on any of your documents.

The writer allows you to focus on your words in a distraction-free interface, yet you can work with others in an effortless document sharing.

With the most standard features, you would expect a word processing software packed in the interface you can access via the web browser and even get unlimited versions of your document.

These versions help you compare differences and find differences after collaboration with others.

One of the most advanced yet convenient features is publishing your documents directly (if you are a content creator).

If not, Zoho Docs Writer can help you electronically sign documents and even fill out PDF forms (or edit PDFs) without a problem.

15. Google Docs

Suppose you are not a fan of standalone word processing documents or don’t consider your computer reliable enough for your work. In that case, Google Docs is one of the most reliable web-based word processing software than most others in this space that you can get your hands on.

Along with the Sheets, Slides, and Forms, Docs allows you to not only create documents from scratch or import and edit existing documents, but it also allows you to store all your documents in the cloud for free.

You can easily access your documents from any device, as long as you’re signed in to your Google account, and yet you will easily get used to the functionality and features of the Docs.

On top of that, Docs is very flexible, so you can export them in many different formats just the way you can import documents. However, one thing to keep in mind is that you will need an internet connection at all times to access your documents or work on them.

Conclusion

Even though Microsoft Word is one of the most known word processing software globally, there is much other software that is as good and worth giving it a try.

One couldn’t do without quality word processing software, but you even get the chance to find the one that will fit your needs the most with so many choices.

Even though each one of these is similar, there are differences in the interface, functionality, and even features that the software provides.

With that being said, you can easily choose according to your needs and purpose, which I highly recommend!

Tom loves to write on technology, e-commerce & internet marketing.
Tom has been a full-time internet marketer for two decades now, earning millions of dollars while living life on his own terms. Along the way, he’s also coached thousands of other people to success.

From Wikipedia, the free encyclopedia

WordPerfect, a word processor first released for minicomputers in 1979 and later ported to microcomputers, running on Windows XP

A word processor (WP)[1][2] is a device or computer program that provides for input, editing, formatting, and output of text, often with some additional features.

Early word processors were stand-alone devices dedicated to the function, but current word processors are word processor programs running on general purpose computers.

The functions of a word processor program fall somewhere between those of a simple text editor and a fully functioned desktop publishing program. However, the distinctions between these three have changed over time and were unclear after 2010.[3][4]

Background[edit]

Word processors did not develop out of computer technology. Rather, they evolved from mechanical machines and only later did they merge with the computer field.[5] The history of word processing is the story of the gradual automation of the physical aspects of writing and editing, and then to the refinement of the technology to make it available to corporations and Individuals.

The term word processing appeared in American offices in early 1970s centered on the idea of streamlining the work to typists, but the meaning soon shifted toward the automation of the whole editing cycle.

At first, the designers of word processing systems combined existing technologies with emerging ones to develop stand-alone equipment, creating a new business distinct from the emerging world of the personal computer. The concept of word processing arose from the more general data processing, which since the 1950s had been the application of computers to business administration.[6]

Through history, there have been three types of word processors: mechanical, electronic and software.

Mechanical word processing[edit]

The first word processing device (a «Machine for Transcribing Letters» that appears to have been similar to a typewriter) was patented by Henry Mill for a machine that was capable of «writing so clearly and accurately you could not distinguish it from a printing press».[7] More than a century later, another patent appeared in the name of William Austin Burt for the typographer. In the late 19th century, Christopher Latham Sholes[8] created the first recognizable typewriter although it was a large size, which was described as a «literary piano».[9]

The only «word processing» these mechanical systems could perform was to change where letters appeared on the page, to fill in spaces that were previously left on the page, or to skip over lines. It was not until decades later that the introduction of electricity and electronics into typewriters began to help the writer with the mechanical part. The term “word processing” (translated from the German word Textverarbeitung) itself was created in the 1950s by Ulrich Steinhilper, a German IBM typewriter sales executive. However, it did not make its appearance in 1960s office management or computing literature (an example of grey literature), though many of the ideas, products, and technologies to which it would later be applied were already well known. Nonetheless, by 1971 the term was recognized by the New York Times[10] as a business «buzz word». Word processing paralleled the more general «data processing», or the application of computers to business administration.

Thus by 1972 discussion of word processing was common in publications devoted to business office management and technology, and by the mid-1970s the term would have been familiar to any office manager who consulted business periodicals.

Electromechanical and electronic word processing[edit]

By the late 1960s, IBM had developed the IBM MT/ST (Magnetic Tape/Selectric Typewriter). This was a model of the IBM Selectric typewriter from the earlier part of this decade, but it came built into its own desk, integrated with magnetic tape recording and playback facilities along with controls and a bank of electrical relays. The MT/ST automated word wrap, but it had no screen. This device allowed a user to rewrite text that had been written on another tape, and it also allowed limited collaboration in the sense that a user could send the tape to another person to let them edit the document or make a copy. It was a revolution for the word processing industry. In 1969, the tapes were replaced by magnetic cards. These memory cards were inserted into an extra device that accompanied the MT/ST, able to read and record users’ work.

In the early 1970s, word processing began to slowly shift from glorified typewriters augmented with electronic features to become fully computer-based (although only with single-purpose hardware) with the development of several innovations. Just before the arrival of the personal computer (PC), IBM developed the floppy disk. In the early 1970s, the first word-processing systems appeared which allowed display and editing of documents on CRT screens.

During this era, these early stand-alone word processing systems were designed, built, and marketed by several pioneering companies. Linolex Systems was founded in 1970 by James Lincoln and Robert Oleksiak. Linolex based its technology on microprocessors, floppy drives and software. It was a computer-based system for application in the word processing businesses and it sold systems through its own sales force. With a base of installed systems in over 500 sites, Linolex Systems sold 3 million units in 1975 — a year before the Apple computer was released.[11]

At that time, the Lexitron Corporation also produced a series of dedicated word-processing microcomputers. Lexitron was the first to use a full-sized video display screen (CRT) in its models by 1978. Lexitron also used 514 inch floppy diskettes, which became the standard in the personal computer field. The program disk was inserted in one drive, and the system booted up. The data diskette was then put in the second drive. The operating system and the word processing program were combined in one file.[12]

Another of the early word processing adopters was Vydec, which created in 1973 the first modern text processor, the «Vydec Word Processing System». It had built-in multiple functions like the ability to share content by diskette and print it.[further explanation needed] The Vydec Word Processing System sold for $12,000 at the time, (about $60,000 adjusted for inflation).[13]

The Redactron Corporation (organized by Evelyn Berezin in 1969) designed and manufactured editing systems, including correcting/editing typewriters, cassette and card units, and eventually a word processor called the Data Secretary. The Burroughs Corporation acquired Redactron in 1976.[14]

A CRT-based system by Wang Laboratories became one of the most popular systems of the 1970s and early 1980s. The Wang system displayed text on a CRT screen, and incorporated virtually every fundamental characteristic of word processors as they are known today. While early computerized word processor system were often expensive and hard to use (that is, like the computer mainframes of the 1960s), the Wang system was a true office machine, affordable to organizations such as medium-sized law firms, and easily mastered and operated by secretarial staff.

The phrase «word processor» rapidly came to refer to CRT-based machines similar to Wang’s. Numerous machines of this kind emerged, typically marketed by traditional office-equipment companies such as IBM, Lanier (AES Data machines — re-badged), CPT, and NBI. All were specialized, dedicated, proprietary systems, with prices in the $10,000 range. Cheap general-purpose personal computers were still the domain of hobbyists.

Japanese word processor devices[edit]

In Japan, even though typewriters with Japanese writing system had widely been used for businesses and governments, they were limited to specialists who required special skills due to the wide variety of letters, until computer-based devices came onto the market. In 1977, Sharp showcased a prototype of a computer-based word processing dedicated device with Japanese writing system in Business Show in Tokyo.[15][16]

Toshiba released the first Japanese word processor JW-10 in February 1979.[17] The price was 6,300,000 JPY, equivalent to US$45,000. This is selected as one of the milestones of IEEE.[18]

Toshiba Rupo JW-P22(K)(March 1986) and an optional micro floppy disk drive unit JW-F201

The Japanese writing system uses a large number of kanji (logographic Chinese characters) which require 2 bytes to store, so having one key per each symbol is infeasible. Japanese word processing became possible with the development of the Japanese input method (a sequence of keypresses, with visual feedback, which selects a character) — now widely used in personal computers. Oki launched OKI WORD EDITOR-200 in March 1979 with this kana-based keyboard input system. In 1980 several electronics and office equipment brands entered this rapidly growing market with more compact and affordable devices. While the average unit price in 1980 was 2,000,000 JPY (US$14,300), it was dropped to 164,000 JPY (US$1,200) in 1985.[19] Even after personal computers became widely available, Japanese word processors remained popular as they tended to be more portable (an «office computer» was initially too large to carry around), and become necessities in business and academics, even for private individuals in the second half of the 1980s.[20] The phrase «word processor» has been abbreviated as «Wa-pro» or «wapuro» in Japanese.

Word processing software[edit]

The final step in word processing came with the advent of the personal computer in the late 1970s and 1980s and with the subsequent creation of word processing software. Word processing software that would create much more complex and capable output was developed and prices began to fall, making them more accessible to the public. By the late 1970s, computerized word processors were still primarily used by employees composing documents for large and midsized businesses (e.g., law firms and newspapers). Within a few years, the falling prices of PCs made word processing available for the first time to all writers in the convenience of their homes.

The first word processing program for personal computers (microcomputers) was Electric Pencil, from Michael Shrayer Software, which went on sale in December 1976. In 1978 WordStar appeared and because of its many new features soon dominated the market. However, WordStar was written for the early CP/M (Control Program–Micro) operating system, and by the time it was rewritten for the newer MS-DOS (Microsoft Disk Operating System), it was obsolete. Suddenly, WordPerfect dominated the word processing programs during the DOS era, while there was a large variety of less successful programs.

Early word processing software was not as intuitive as word processor devices. Most early word processing software required users to memorize semi-mnemonic key combinations rather than pressing keys such as «copy» or «bold». Moreover, CP/M lacked cursor keys; for example WordStar used the E-S-D-X-centered «diamond» for cursor navigation. However, the price differences between dedicated word processors and general-purpose PCs, and the value added to the latter by software such as “killer app” spreadsheet applications, e.g. VisiCalc and Lotus 1-2-3, were so compelling that personal computers and word processing software became serious competition for the dedicated machines and soon dominated the market.

Then in the late 1980s innovations such as the advent of laser printers, a «typographic» approach to word processing (WYSIWYG — What You See Is What You Get), using bitmap displays with multiple fonts (pioneered by the Xerox Alto computer and Bravo word processing program), and graphical user interfaces such as “copy and paste” (another Xerox PARC innovation, with the Gypsy word processor). These were popularized by MacWrite on the Apple Macintosh in 1983, and Microsoft Word on the IBM PC in 1984. These were probably the first true WYSIWYG word processors to become known to many people.
Of particular interest also is the standardization of TrueType fonts used in both Macintosh and Windows PCs. While the publishers of the operating systems provide TrueType typefaces, they are largely gathered from traditional typefaces converted by smaller font publishing houses to replicate standard fonts. Demand for new and interesting fonts, which can be found free of copyright restrictions, or commissioned from font designers, occurred.

The growing popularity of the Windows operating system in the 1990s later took Microsoft Word along with it. Originally called «Microsoft Multi-Tool Word», this program quickly became a synonym for “word processor”.

From early in the 21st century Google Docs popularized the transition to online or offline web browser based word processing, this was enabled by the widespread adoption of suitable internet connectivity in businesses and domestic households and later the popularity of smartphones. Google Docs enabled word processing from within any vendor’s web browser, which could run on any vendor’s operating system on any physical device type including tablets and smartphones, although offline editing is limited to a few Chromium based web browsers. Google Docs also enabled the significant growth of use of information technology such as remote access to files and collaborative real-time editing, both becoming simple to do with little or no need for costly software and specialist IT support.

See also[edit]

  • List of word processors
  • Formatted text

References[edit]

  1. ^ Enterprise, I. D. G. (1 January 1981). «Computerworld». IDG Enterprise. Archived from the original on 2 January 2019. Retrieved 1 January 2019 – via Google Books.
  2. ^ Waterhouse, Shirley A. (1 January 1979). Word processing fundamentals. Canfield Press. ISBN 9780064537223. Archived from the original on 2 January 2019. Retrieved 1 January 2019 – via Google Books.
  3. ^ Amanda Presley (28 January 2010). «What Distinguishes Desktop Publishing From Word Processing?». Brighthub.com. Archived from the original on 1 April 2019. Retrieved 1 January 2019.
  4. ^ «How to Use Microsoft Word as a Desktop Publishing Tool». PCWorld. 28 May 2012. Archived from the original on 19 August 2017. Retrieved 3 May 2018.
  5. ^ Price, Jonathan, and Urban, Linda Pin. The Definitive Word-Processing Book. New York: Viking Penguin Inc., 1984, page xxiii.
  6. ^ W.A. Kleinschrod, «The ‘Gal Friday’ is a Typing Specialist Now,» Administrative Management vol. 32, no. 6, 1971, pp. 20-27
  7. ^ Hinojosa, Santiago (June 2016). «The History of Word Processors». The Tech Ninja’s Dojo. The Tech Ninja. Archived from the original on 6 May 2018. Retrieved 6 May 2018.
  8. ^ See also Samuel W. Soule and Carlos Glidden.
  9. ^ The Scientific American, The Type Writer, New York (August 10, 1872)
  10. ^ W.D. Smith, “Lag Persists for Business Equipment,” New York Times, 26 Oct. 1971, pp. 59-60.
  11. ^ Linolex Systems, Internal Communications & Disclosure in 3M acquisition, The Petritz Collection, 1975.
  12. ^ «Lexitron VT1200 — RICM». Ricomputermuseum.org. Archived from the original on 3 January 2019. Retrieved 1 January 2019.
  13. ^ Hinojosa, Santiago (1 June 2016). «The History of Word Processors». The Tech Ninja’s Dojo. Archived from the original on 24 December 2018. Retrieved 1 January 2019.
  14. ^ «Redactron Corporation. @ SNAC». Snaccooperative.org. Archived from the original on 15 December 2018. Retrieved 1 January 2019.
  15. ^ «日本語ワードプロセッサ». IPSJコンピュータ博物館. Retrieved 2017-07-05.
  16. ^ «【シャープ】 日本語ワープロの試作機». IPSJコンピュータ博物館. Retrieved 2017-07-05.
  17. ^ 原忠正 (1997). «日本人による日本人のためのワープロ». The Journal of the Institute of Electrical Engineers of Japan. 117 (3): 175–178. Bibcode:1997JIEEJ.117..175.. doi:10.1541/ieejjournal.117.175.
  18. ^ «プレスリリース;当社の日本語ワードプロセッサが「IEEEマイルストーン」に認定». 東芝. 2008-11-04. Retrieved 2017-07-05.
  19. ^
    «【富士通】 OASYS 100G». IPSJコンピュータ博物館. Retrieved 2017-07-05.
  20. ^ 情報処理学会 歴史特別委員会『日本のコンピュータ史』ISBN 4274209334 p135-136

Понравилась статья? Поделить с друзьями:
  • Uses of the а word audio
  • Uses of the word air
  • Uses of the game word search
  • Uses of microsoft excel spreadsheet
  • Uses of microsoft excel in accounting