What I want to know is two points as below:
- What is a reverse line feed?
- What is the difference between reverse line feed and line feed?
Is there anyone can give me an example or make an explanation?
What I want to know is two points as below:
Is there anyone can give me an example or make an explanation?
A reverse line feed makes the cursor go back up to the previous line. A regular line feed makes the cursor go to the next line.
Edit: ThePower is correct, these terms originate from the days of line printers, "feed" meaning to feed the paper through the printer, in this case by one line, and reverse line feed moving the paper backwards by one line.
Some earlier computer printers, were able to print subscripts and superscripts, and first did this by rolling up or down a half line, instead of a whole line.
For example, as found in this old printer manual.
Let's take a look at the related vertical commands:
line feed and reverse line feed, and
half line feed and reverse half line feed
Line feed goes down one line. Reverse goes up one line.
Half line feed goes down one half line. Reverse goes up one half line.
A reverse line feed is a character, specifically U+008D REVERSE LINE FEED. It's a control character.
A regular line feed makes the cursor go to the beginning of the next line. In contrast, a reverse line feed makes the cursor go to the beginning of the previous line.
This character is hardly ever used in modern text files, but it still exists.