“House style” is a publishing term defining the set of rules used in the production of whatever it is they publish. It’s all about consistency – not only within a single work, but across the entire catalogue of the press – everything from spelling conventions to punctuation and layout.
Proper typesetting of punctuation is as meaningful and important as proper spelling. Each character performs a specific task and is not interchangeable, even though they may look similar, as in ’ ′ ´ (apostrophe, prime, and acute). It is important to remember that individual punctuation marks can have a completely different look from one typeface to another – including looking like other characters in different typefaces – which is why font selection is important. You would no more use a zero in place of an alphabetic “oh” simply because of the way it looks, and since (X)HTML characters can be specified by name, it is critical to understand that usage and set punctuation marks accordingly.
Visual Index of Punctuation & Figures:
Single Stroke:
''
(X)HTML apostrophe. Typographically, this character would be (or could be) referred to as a “vertical prime”. (Primes being either vertical or sloped.) Found on typewriters, which lack typographic quotation marks. Use as single quote when setting blocks of computer code.
°°
Degree.
——
Em dash. Use to introduce the source in a hanging quotation, or in bibliographic citation or foot/end- notes.
––
En dash. Use in paragraph text with spaces on either side, per Tschichold, instead of the closed em dash.
′′
Prime. Abbreviation for:
- feet (1′ = 12″)
- minutes of arc (arcminute)
- minutes of time.
‘ ’‘ ’
Single quotation. Use:
- When nesting quotes
- Close-quote for apostrophe.
The Slash Hassle:
Typographically, there are two slash characters: the solidus and the virgule. (The backslash found on computer keyboards has no typographic analogue or function.) Per Bringhurst, they are traditionally used as follows:
Solidus (aka “fraction bar”):
- used with superior and inferior numbers to create ad hoc fractions (where the numerator is set above the baseline)
- in the abbreviation of British imperial currency, prior to 1971.
Virgule:
- to create level fractions
- by Medieval scribes and later writers as a form of comma (virgule being French for “comma”)
- to represent a line break when verse is set as prose
- as a sign of separation when writing dates, addresses, and such.
Visually, the solidus is slanted more heavily to the right, which results in greater separation between the adjoining characters, as well as being kerned so that the character immediately following tucks deeper under the terminating edge.
While this may seem straightforward (because, face it, it is), things get confusing when you move to the ever-dicey arena of web typography. Several slashes are defined in Unicode character sets, but there does not seem to be any standard for their use, and even their names conflict with traditional typographic names.
The keyboard slash ( / ) is equivalent to the Unicode SOLIDUS (U+002F) ( / ). There are two additional Unicode slashes – DIVISION SLASH (U+2215 or ∕) and FRACTION SLASH (U+2044 or ⁄) – which appear to render identically in many fonts – ∕ ⁄ – and are kerned to allow trailing figures to be positioned before the slash appears to end. Thus, you can create a fraction 1⁄4. (Note that super- and subscript was used to more properly orient the characters vertically.)
This is a level fraction built with a division slash: 1∕4.
This is a level fraction built with a fraction slash: 1⁄4.
And so, extrapolating on Bringhurst, usage here is to build uneven fractions with the Unicode FRACTION SLASH (in place of the typographic solidus) in conjunction with super- and subscripted characters, and to use the keyboard slash (what Unicode refers to as “solidus”) as the typographic virgule.
The use of the slash in the formatting of currency has its own fascinating history. In A.D. 309, Constantine I introduced the gold coin known as the solidus. It was standardized as 1⁄72 of the Roman pound, the libra, and was different than an earlier so-named coin, introduced by Diocletian. There were 25 silver denarii to the solidus.
Some centuries later, British imperial currency was abbreviated following the Libra-solidus-denarius progression (L/s/d) of the Romans: £ for the pound sterling, s. and d. for the shilling and pence (hence £/s/d). Bringhurst suggests that while these abbreviations are traditionally written using the solidus figure (from which the typographic name derives), the “design and fitting of the characters on most modern type fonts” make it more appropriate to use an italic virgule (herein an italic keyboard slash) to set references to pre-decimalization British currency. Otherwise, you get this: £⁄s⁄d.
Double Stroke:
××
Dimension or multiplication sign. Commonly, and mistakenly, replaced with the letter “x”.
″″
Double prime. Abbreviation for:
- inches (1″ = 25.4mm)
- seconds of arc (arcseconds)
- seconds of time.
“ ”“ ”
Double quotation. Use as primary quotation mark.
""
(X)HTML quotation. Typographically, this character would be (or could be) referred to as a “vertical double prime”. (Primes being either vertical or sloped.) Also known as a “dumb quote” from its usage on typewriters, which lack typographic quotation marks. Use when setting blocks of computer code.
Miscellaneous:
´´
Acute. An accent used on vowels. Does not appear independently.
&&
Ampersand. Must be escaped in (X)HTML or it will be interpreted as code.
••
Bullet.
¢¢
Cent.
©©
Copyright.
¨¨
Diaeresis (also umlaut). An accent used on vowels. Does not appear independently. Linguists distinguish between the two terms though the typographic character is the same. In English and Romance languages, the diaeresis is used to mark the separation of adjacent vowels into individually pronounced sounds, whereas the umlaut marks a change in the pronunciation of a single vowel.
Examples:
öö
÷÷
Division.
̋˝
Double acute. An accent used on vowels. Does not appear independently.
>>
Greater than. Must be escaped in (X)HTML or it will be interpreted as code.
<<
Less than. Must be escaped in (X)HTML or it will be interpreted as code.
№№ ... or ... No Nos
Numero. Traditionally used to abbreviate the word “number”, especially as it appears in addresses (№ 221B Baker Street) or product models (a Stanley No 55 plane). In Unicode, both characters are contained in the single codepoint, however, only the singular is provided. To produce the plural, CSS is used (since <u> was deprecated in HTML 4.0 and invalid in XHTML 1.0 Strict and 1.1). Given the slight variation between the Unicode and created versions (shown above), it is best to use CSS so both singular and plural will match.
¶¶
Paragraph.
Φ φΦ φ
Phi (upper and lower case shown). Used to express the Mean of Phidias (aka the Golden Ratio).
ππ
Pi.
££
Pound sterling.
®®
Registered trademark.
§§
Section.
™™
Trademark.
Positioning:
<sub>subscript</sub>
Subscript is used to create inferior (i.e. below the baseline) figures, such as fractional denominators.
<sup>superscript</sup>
Superscript is used to create superior (i.e. above the baseline) figures, such as exponents, fractional numerators, or footnote numbers.
Notes:
Bringhurst, Robert. Elements of Typographic Style, The. 2nd ed. (Vancouver: Hartley & Marks, Publishers, 2002).


