UNIX man and info pages and many standard utilities use a rather unique quoting convention:
`single quotes' ``double quotes''
Other software tends to use just single or double quotes.
Where does this tradition come from?
UNIX man and info pages and many standard utilities use a rather unique quoting convention:
`single quotes' ``double quotes''
Other software tends to use just single or double quotes.
Where does this tradition come from?
The oldest usage I know of is TeX. TeX uses `single-quote' and ``double-quote'' instead of 'singe-quote' and "double-quote". It uses them because opening and closing quotes are typeset differently, they curve around the quoted text. At the time, the Unicode open and close quotation marks didn't exist.
TeX was initially released in 1978 according to Wikipedia. So that's a while ago.
In many fonts, especially older terminal fonts, apostrophe (') looks like close-quote (’). And grave accent (`) looks like open-quote (‘), or at least closer to it than apostrophe does. I'm not sure if this predates TeX; it could (at least, for many plain English uses of apostrophe (e.g., Bob's machine), traditional typesetting often uses the close-quote curved character.
(Other places to look would be nroff [1973] or RUNOFF [1964]).