Skip to main content

Word Processor "FORMATTING TEXT AND PARAGRAPH"

FORMATTING TEXT 
Formatting refers to the way our text will look like – the design of the characters, their size, the space between paragraphs, their alignment, etc. 
First, selection of text. 
• By using the mouse, position the insertion point (by clicking the mouse) at the beginning or end of the block to be selected and then click and drag to the end or beginning of the block. 
• By using the shortcuts: Double-click on a word to select it. n Triple-click on a paragraph to select it. Ctrl+click on a sentence to select it. 
There are basically two types of formatting: 
• Character formatting, and 
• Paragraph formatting 
CHARACTER FORMATTING 
Character formatting is the one which we can apply to any individual character or to a group of characters. 
It has the following options:
Font : This decides the appearance of our characters. 
Font Style : We can make characters stand out by making them Bold, Italic or both. 
Size : This increases/decreases the size of the characters – the size measured in points (72 points =1 inch) 
Font Color : We can apply colours to the characters for printing the final document. Underline : We can draw attention to some particular text by underlining it. 
Effects : We can also apply effects to our text. Two most common ones are Superscript and Subscript. To make a character into superscript, we need to select only that character, and click the box against Superscript or subscript.
PARAGRAPH FORMATTING 
There are some formatting features that get applied to an entire paragraph or paragraphs, but not to any given character or a group of words. Such formatting features are described as Paragraph formatting. 
It provides the following options :
Alignment : The alignment of a paragraph may be left, center, right or justify. 
Left Alignment: All the lines of the paragraph will be aligned on the left. 
Right Alignment: All the lines of the paragraph will be aligned on the right. 
Center Alignment: All the lines of the paragraph will align to the center. 
Justify: The left as well as the right side of the paragraph will be aligned except for the last line.

Indentation : : Indents are the left and right boundaries of selected paragraphs within a document. This may b e necessary when different paragraphs have different left and right boundaries. For example, we can see the indentation in poems. The indentation options available in most word processors are Left and Right. Apart from these, we can have special indentation in the form of First Line and Hanging.

Spacing : This option allows us to have some space before and/or after a paragraph or a group of paragraphs. We can select the paragraph(s) and select or type in the desired value against the appropriate option – Before or After. These values are measured in points. 
         There is also a Line spacing option, which decides on the spacing between the lines of the paragraph. Normally we will type with the value Single for it. But if we want to have more space between the lines, we can select 1.5 lines or Double for it. 

Comments

Popular posts from this blog

Computer Generations

 Computer Generations   Computers have evolved over time through different generations, each marked by significant technological advancements and changes in design and architecture. These generations are often categorized based on the underlying hardware and the key developments that distinguish one Generation from another. Let's explore the main computer generations: First Generation Computers    The First Generation of computers refers to the initial period of electronic computing, characterized by the use of vacuum tubes as the primary electronic component. This Generation spans the 1940s and 1950s and is marked by groundbreaking developments in computer technology.  Examples of First-Generation Computers:  o ENIAC (Electronic Numerical Integrator and Computer): Completed in 1945, ENIAC was one of the first electronic general-purpose computers. It was designed to calculate artillery firing tables for the United States Army during World War ...

Programming in "C"

 Introduction   C is a general-purpose programming language that was developed in the early 1970s by Dennis Ritchie at Bell Laboratories. It has since become one of the most widely used programming languages and has influenced the development of many other languages, including C++, Java, and C#. C is known for its efficiency, flexibility, and low-level programming capabilities. It is commonly used for system programming, embedded systems, and developing operating systems. C is also a popular choice for developing applications that require high performance, such as game engines and scientific simulations.   Here are some key features and concepts of C programming:   Syntax: C has a relatively simple syntax compared to some other programming languages. It uses a combination of keywords, variables, data types, operators, and control structures to write programs.  Variables and Data Types: You declare variables to store data in C. Various d...

ARITHMETIC OPERATIONS ON BINARY NUMBER

Binary arithmetic is simpler to learn because binary number system deals with only two digits - 0 and 1. Binary number perform all arithmetic operation such as Addition, Substraction, Multiplication and compliment as in decimal number system. Binary Addition The addition table for binary arithmetic consist of only the following four entries: 0+0=0 0+1=1 1+0=1 1+1=0 , plus a carry of 1 to the next column.     1011        + 1100    10111     1100    + 1100     11000 Binary Substraction There are three ways to do substraction between binary numbers:- 1. Simple Substraction 2. Substraction using 1's Complement 3. Substraction using 2's Complement Simple Substraction: The complete table of binary substraction is as follows: 0-0=0 0-1=1, borrow 1 from next column 1-0=1 1-1=0    1101 - 0101   1000     1001   - 0111    0...