The semicolon (or semi-colon) is a symbol commonly used as orthography punctuation. In the English language, a semicolon is most commonly used to link (in a single sentence) two independent clauses that are closely related in thought, such as when restating the preceding idea with a different expression. When a semicolon joins two or more ideas in one sentence, those ideas are then given equal rank. Semicolons can also be used in place of commas to separate items in a list, particularly when the elements of the list themselves have embedded .
The semicolon is one of the least understood of the standard marks, and is not frequently used by many English speakers.
In the QWERTY keyboard layout, the semicolon resides in the Shift key homerow beneath the little finger of the right hand. It has become widely used in programming languages as a statement separator or terminator.
In 1561, Manuzio's grandson, also called Aldo Manuzio, explains the semicolon's use with several examples in Orthographiae ratio. In particular, Manuzio motivates the need for punctuation ( ) to divide () sentences and thereby make them understandable. The comma, semicolon, colon, and full stop are seen as steps, ascending from low to high; the semicolon thereby being an intermediate value between the comma and colon . Here are four examples used in the book to illustrate this:
Around 1580, Henry Denham starts using the semicolon "with propriety" for English texts, and more widespread usage picks up in the next decades.
Around 1640, in Ben Jonson's book The English Grammar, the character is described as "somewhat a longer breath" compared to the comma. The aim of the breathing, according to Jonson, is to aid understanding.
In 1644, in Richard Hodges' The English Primrose, it is written:
In 1762, in Robert Lowth's A Short Introduction to English Grammar, a parallel is drawn between punctuation and rest in music:
In 1798, in Lindley Murray's English Grammar, the semicolon is introduced as follows:
The semicolon is sometimes used, when the preceding member of the sentence does not of itself give a complete sense, but depends on the following clause; and sometimes when the sense of that member would be complete without the concluding one; as in the following instances.
The most common use of the semicolon is to join two independent clauses without using a conjunction such as the word and. Semicolons are followed by a lower case letter, unless that letter would ordinarily be capitalised mid-sentence (e.g., the word "", acronyms/initialisms, or ). In older English printed texts, colons and semicolons are offset from the preceding word by a non-breaking space, a convention still current in modern continental French texts. Ideally, the space is less wide than the inter-word spaces. Some guides recommend separation by a hair space. Modern recommend no space before them and one space after. They also typically recommend placing semicolons outside ending , although this was not always the case. For example, the first edition of The Chicago Manual of Style (1906) recommended placing the semicolon inside ending quotation marks.
Uses of the semicolon in English include:
For example:
The dash character is used in French writing too, but not as widely as the semicolon. Usage of these devices (semicolon and dash) varies from author to author.
In response to Truss, Ben Macintyre, a columnist in The Times, wrote:
Semicolon use in British fiction has declined by 25% from 1991 to 2021.
Unicode contains encoding for several other semicolon or semicolon-like characters:
Semicolons are optional in a number of languages, including BCPL, Python, R, Eiffel, and Go, meaning that they are part of the formal grammar for the language but can be inferred in many or all contexts (e.g., by end of line that ends a statement, as in Go and R). As languages can be designed without them, semicolons are considered an unnecessary nuisance by some.
The use of semicolons in control-flow structures and blocks of code is variedsemicolons are generally omitted after a closing brace, but included for a single statement branch of a control structure (the "then" clause), except in Pascal, where a semicolon terminates the entire if-then-else clause (to avoid dangling else) and thus is not allowed between a "then" and the corresponding "else", as this causes unnesting.
This use originates with ALGOL 60 and falls between the comma used as a list separatorand the period/full stop used to mark the end of the program. The semicolon, as a mark separating statements, corresponds to the ordinary English usage of separating independent clauses and gives the entire program the gross syntax of a single ordinary sentence. Of these other characters, whereas commas have continued to be widely used in programming for lists (and rare other uses, such as the comma operator that separates expressions in C), they are rarely used otherwise, and the period as the end of the program has fallen out of use. The last major use of the comma, semicolon, and period hierarchy is in Erlang (1986), where commas separate expressions; semicolons separate clauses, both for control flow and for function clauses; and periods terminate statements, such as function definitions or module attributes, not the entire program. Drawbacks of having multiple different separators or terminators (compared to a single terminator and single grouping, as in semicolon-and-braces) include mental overhead in selecting punctuation, and overhead in rearranging code, as this requires not only moving lines around, but also updating the punctuation.
In some cases the distinction between a separator and a terminator is strong, such as early versions of Pascal, where a final semicolon yields a syntax error. In other cases a final semicolon is treated either as optional syntax or as being followed by a null statement, which is either ignored or treated as a NOP (no operation or null command); compare in lists. In some cases a blank statement is allowed, allowing a sequence of semicolons or the use of a semicolon by itself as the body of a control-flow structure. For example, a blank statement (a semicolon by itself) stands for a NOP in C/C++, which is useful in busy waiting synchronization loops.
APL uses semicolons to separate declarations of local variables and to separate axes when indexing multidimensional arrays, for example, matrix[2;3].
Other languages (for instance, some assembly languages and LISP dialects, CONFIG.SYS and INI files) use semicolons to mark the beginning of comments.
In Microsoft Excel and other Spreadsheet, the semicolon is used as a list separator, especially in cases where the decimal separator is a comma, such as 0,32; 3,14; 4,50, instead of 0.32, 3.14, 4.50. It is also used as an function argument separator, when localization using comma as the decimal separator is used; for example: =SUMA(A1;D2) in the Czech language localization of Excel is equivalent of =SUM(A1:D2) in the English-language localizations.
In Lua, semicolons or commas can be used to separate table elements.
In MATLAB and GNU Octave, the semicolon can be used as a row separator when defining a vector or matrix (whereas a comma separates the columns within a row of a vector or matrix) or to execute a command silently, without displaying the resulting output value in the console.
In HTML, a semicolon is used to terminate a character entity reference, either named or numeric. The declarations of a style attribute in Cascading Style Sheets (CSS) are separated and terminated with semicolons.
The file system of RSX-11 and OpenVMS, Files-11, uses semicolons to indicate a file's version number. The semicolon is permitted in in the Microsoft Windows file systems NTFS and VFAT, but not in its short names.
In some delimiter-separated values file formats, the semicolon is used as the separator character, as an alternative to comma-separated values.
In the argument list of a mathematical function a semicolon may be used to separate variables from fixed parameters.
In differential geometry and tensor analysis, a semicolon preceding an Indexed family is used to indicate the covariant derivative of a function with respect to the coordinate associated with that index.
In the calculus of relations, the semicolon is used in infix notation for the composition of relations:
In piecewise functions, a semicolon or comma may follow the subfunction or subdomain; the or can be omitted, in which case it seems replaced by the semicolon or comma.
The Humphrey point is sometimes used as the "decimal point" in duodecimal numbers: 54;612 equals 64.510.
Project Semicolon is the name of an anti-suicide initiative (since the semicolon continues a sentence rather than ending it) which has led to the punctuation mark becoming a highly symbolic and popular tattoo (most commonly done on the wrist). While some consider this to be faith-based, the movement is in general faith-neutral and inclusive of all people.
History
Publica, privata; sacra, profana; tua, aliena.
Public, private; sacred, profane; , another's.
Ratio docet, si adversa fortuna sit, nimium dolendum non esse; si secunda, moderate laetandum.
Reason teaches, if fortune is adverse, not to complain too much; if favorable, to rejoice in moderation.
Tu, quid divitiae valeant, libenter spectas; quid virtus, non item.
You, what riches are worth, gladly consider; what virtue (is worth), not so much.
Etsi ea perturbatio est omnium rerum, ut suae quemque fortunae maxime paeniteat; nemoque sit, quin ubivis, quam ibi, ubi est, esse malit: tamen mihi dubium non est, quin hoc tempore bono viro, Romae esse, miserrimum sit.
Although it is a universal confusion of affairs(,) such that everyone regrets their own fate above all others; and there is no one, who would not rather anywhere else in the world, than there, where he is, prefer to be: yet I have no doubt, at the present time for an honest man, to be in Rome, is the worst form of misery.
At a comma, stop a little;
...
At a semi-colon, somewhat more;
...
At a colon, a little more than the former;
...
At a period, make a full stop;
The full stop is a pause in quantity or duration double of the Colon; the Colon is double of the Semicolon; and the Semicolon is double of the Comma. So that they are in the same proportion to one another as the Whole note, the Half note, the quarter note, and the Eighth note, in Music.
The Semicolon is used for dividing a compound sentence into two or more parts, not so closely connected as those which are separated by a comma, nor yet so little dependent on each other, as those which are distinguished by a colon.
Natural languages
English
In a list or sequence, if even one item needs its own internal comma, use of the semicolon as the separator throughout that list is justified, as shown by this example from the California Penal Code:
Arabic
Greek and Church Slavonic
French
Literature
Character encoding
Computing
Programming
Data
Mathematics
Other uses
See also
Notes
Further reading
|
|