Indentation (typesetting)

(Redirected from Dedent)


In the written form of many languages, indentation describes empty space, a.k.a. white space, used around text to signify an important aspect of the text such as:

Many computer languages use block indentation to demarcate blocks of source code.

Indention is essentially the same regardless of whether the writing system is left-to-right (e.g. Latin and Cyrillic) or right-to-left (e.g. Hebrew and Arabic) when considering line beginning and end. For example, indenting at the beginning of line means on the left for a left-to-right script and on the right for right-to-left script.

Indent is both a noun and a verb. The verb is the act of formatting text to be indented whereas the noun refers to the resulting empty space.

Types

There are three main types of indentation: first-line, hanging and block.

Each example below is in a box that represents the page boundary and uses the common typesetting lorem ipsum content. The width of indentation here is in units of em spaces.

For first-line indentation the first line of a paragraph is indented.
A first-line indentation of 2 em:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 
For hanging indentation all but the first line of a paragraph is indented.
A hanging indentation of 2 em:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
For block indentation the entire paragraph is indented relative to the preceding paragraph.
A block indentation of 2 em on the left:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Block indentation on both sides is commonly used for a quotation, a block quotation, here shown with 2 em on the left and right but since it is not right-aligned, the empty space on the right varies based on line length:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Here's the same as the previous but justified (left and right aligned):
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Indentation in programming

In computer programming, indentation describes formatting source code with whitespace to the left of code text – often to visually show that a sequence of code lines is syntactically a code block. Typically, the lines of a block are aligned with an amount of white space that indicates the block's depth in the hierarchical structure of the code. Each inner level of the hierarchy is indented by a multiple of this indentation width.

White space in code is typically stored as whitespace characters.

For a free-form language, indentation is exclusively for the programmer since a code processor (i.e. compiler, interpreter) ignores whitespace characters. Code can have inconsistent or even no indentation, but in general is formatted with somewhat consistent indentation.

Some languages rely on indentation to demarcate block structure, often via the off-side rule. Due to this syntax requirement, the code must have a level of consistency that is not required in free-form language code.

The neologisms outdent, unindent and dedent describe the opposite of indentation – aligning code text of a line to the left of the previous line.

Variations

Common variations in the implementation of indentation include: how much to indent a block at each level of the code hierarchy, usually measured in spaces, and whether to store whitespace characters as space or tab characters.Although there are common practices, consensus is not universal.[1]These variations are driven by factors that may include but are not limited to: language syntax, organizational mandate and personal preference.

Common practices

The following table identifies notable practices with respect to code indentation.

LanguageFree-form?Note
BashYesFritz Mehner's style guide suggests 2, 4, or 8 spaces and uses 2 in all examples[2]

Google uses 2 spaces[3]

CYesThe Linux kernel uses 1 tab[4][5]

NASA uses 4 spaces.[6]

Clinton Staley advocates 3 spaces[7]

C++YesWebKit recommends 4 spaces[8]

Google uses 2 spaces[9]

C#YesMicrosoft convention: 4 spaces[10]
CSSYesDrupal, GitHub, and Google use 2 spaces[11][12][13][14]

WordPress uses tabs[15]

DartYesdart format uses 2 spaces
DelphiYesDelphi style guide: 2 spaces [16]
F#YesF# style guide: 4 spaces[17]
GoYesEffective Go: 1 tab [18]
HaskellNoGoogle uses 2 spaces[19]
HTMLYesGoogle uses 2 spaces[13]

HTML Tidy defaults to 2 spaces[20]

JavaYesOracle uses 4 spaces[21]

Android uses 4 spaces[22]

Most Eclipse IDE components use tabs

JavaScriptYesDouglas Crockford advocates 4 spaces[23]

GitHub and Google use 2 spaces[24][25]

jQuery uses tabs[26]

Firefox's built-in jsbeautifier defaults to 2 spaces

prettyprinter in Google Chrome and Internet Explorer use 4 spaces

JuliaYesJulia style guide: 4 spaces[27]
KotlinYesKotlin style guide: 4 spaces[28]
LuaYesLua style guide: 2 spaces[29]
PerlYesLarry Wall prefers 4 spaces[30]
PHPYesDrupal use 2 spaces[31]

PEAR and Zend use 4 spaces[32][33]

CodeIgniter and WordPress use tabs[34][35]

PSR-2 specifies 4 spaces[36]

PowerShellYesUnofficial PowerShell Best Practices and Style Guide: 4 spaces[37]
PythonNoPEP 8: 4 spaces[38]
RubyYesRuby style guide: 2 spaces [39]
RustYesRust style guide: 4 spaces [40]
ScalaYesScala style guide: 2 spaces [41]
SwiftYesGoogle uses 2 spaces[42]
TclYesTcl style guide: 4 spaces [43]
Visual BasicYesMicrosoft convention: 4 spaces [44]
XMLYesGoogle uses 2 spaces[45]

Elastic tabstops

In 2006, a new method of indentation was proposed, called elastic tabstops.[citation needed]

References