Previous: Italic Corrections, Up: Using Fonts [Contents][Index]
As discussed in Requests and Macros, the formatter treats the first character on an input line specially. Further, formatting a glyph has many consequences on formatter state.205 Occasionally, we want to escape this context or embrace some of those consequences without actually rendering a glyph to the output.
Interpolate a dummy character, which is constitutive of output but invisible.206 Its presence alters the interpretation context of a subsequent input character, and enjoys several applications.
Test.
Test.
.br
************
⇒ Test. Test.
⇒ ************
Test.\&
Test.
.br
************
⇒ Test. Test.
⇒ ************
.Test
error→ warning: name 'Test' not defined
\&.Test
⇒ .Test
.tr JIjiK\&k\&UVuv
Post universitum, alea jacta est, OK?
⇒ Post vniversitvm, alea iacta est, O?
\l'4i-'
error→ warning: expected numeric expression,
error→ got character "'"
\l'4i\&-'
⇒ ----------------------------------------
The dummy character escape sequence sees use in macro definitions as a means of ensuring that arguments are treated as text even if they begin with spaces or control characters.
.de HD \" typeset a simple bold heading . sp . ft B \&\\$1 \" exercise: remove the \& . ft . sp .. .HD .\|.\|.\|surprised?
One way to think about the dummy character is to imagine placing the symbol ‘&’ in the input at a certain location; if doing so has all the side effects on formatting that you desire except for sticking an ugly ampersand in the midst of your text, the dummy character is what you want in its place.
Interpolate a transparent dummy character—one that is
transparent to end-of-sentence detection. It behaves as \&,
except that \& is treated as letters and numerals normally are
after ‘.’, ‘?’ and ‘!’; \& cancels end-of-sentence
detection, and \) does not.
.de Suffix-&
. nop \&\\$1
..
.
.de Suffix-)
. nop \)\\$1
..
.
Here's a sentence.\c
.Suffix-& '
Another one.\c
.Suffix-) '
And a third.
***********************************************
⇒ Here's a sentence.' Another one.' And a third.
⇒ ***********************************************
Previous: Italic Corrections, Up: Using Fonts [Contents][Index]