1*32a712daSGarrett D'Amore.\" 2*32a712daSGarrett D'Amore.\" Permission to use, copy, modify, and distribute this software for any 3*32a712daSGarrett D'Amore.\" purpose with or without fee is hereby granted, provided that the above 4*32a712daSGarrett D'Amore.\" copyright notice and this permission notice appear in all copies. 5*32a712daSGarrett D'Amore.\" 6*32a712daSGarrett D'Amore.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 7*32a712daSGarrett D'Amore.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 8*32a712daSGarrett D'Amore.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 9*32a712daSGarrett D'Amore.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 10*32a712daSGarrett D'Amore.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 11*32a712daSGarrett D'Amore.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 12*32a712daSGarrett D'Amore.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 13*32a712daSGarrett D'Amore.\" 14*32a712daSGarrett D'Amore.\" 15*32a712daSGarrett D'Amore.\" Copyright (c) 2003 Jason McIntyre <jmc@openbsd.org> 16*32a712daSGarrett D'Amore.\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> 17*32a712daSGarrett D'Amore.\" Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org> 18*32a712daSGarrett D'Amore.\" Copyright 2012 Nexenta Systems, Inc. All rights reserved. 19*32a712daSGarrett D'Amore.\" 20*32a712daSGarrett D'Amore.Dd Nov 23, 2011 21*32a712daSGarrett D'Amore.Dt MANDOC_CHAR 5 22*32a712daSGarrett D'Amore.Os 23*32a712daSGarrett D'Amore.Sh NAME 24*32a712daSGarrett D'Amore.Nm mandoc_char 25*32a712daSGarrett D'Amore.Nd mandoc special characters 26*32a712daSGarrett D'Amore.Sh DESCRIPTION 27*32a712daSGarrett D'AmoreThis page documents the 28*32a712daSGarrett D'Amore.Xr roff 5 29*32a712daSGarrett D'Amoreescape sequences accepted by 30*32a712daSGarrett D'Amore.Xr mandoc 1 31*32a712daSGarrett D'Amoreto represent special characters in 32*32a712daSGarrett D'Amore.Xr mdoc 5 33*32a712daSGarrett D'Amoreand 34*32a712daSGarrett D'Amore.Xr man 5 35*32a712daSGarrett D'Amoredocuments. 36*32a712daSGarrett D'Amore.Pp 37*32a712daSGarrett D'AmoreThe rendering depends on the 38*32a712daSGarrett D'Amore.Xr mandoc 1 39*32a712daSGarrett D'Amoreoutput mode; in ASCII output, most characters are completely 40*32a712daSGarrett D'Amoreunintelligible. 41*32a712daSGarrett D'AmoreFor that reason, using any of the special characters documented here, 42*32a712daSGarrett D'Amoreexcept those discussed in the 43*32a712daSGarrett D'Amore.Sx DESCRIPTION , 44*32a712daSGarrett D'Amoreis strongly discouraged; they are supported merely for backwards 45*32a712daSGarrett D'Amorecompatibility with existing documents. 46*32a712daSGarrett D'Amore.Pp 47*32a712daSGarrett D'AmoreIn particular, in English manual pages, do not use special-character 48*32a712daSGarrett D'Amoreescape sequences to represent national language characters in author 49*32a712daSGarrett D'Amorenames; instead, provide ASCII transcriptions of the names. 50*32a712daSGarrett D'Amore.Ss Dashes and Hyphens 51*32a712daSGarrett D'AmoreIn typography there are different types of dashes of various width: 52*32a712daSGarrett D'Amorethe hyphen (-), 53*32a712daSGarrett D'Amorethe minus sign (\-), 54*32a712daSGarrett D'Amorethe en-dash (\(en), 55*32a712daSGarrett D'Amoreand the em-dash (\(em). 56*32a712daSGarrett D'Amore.Pp 57*32a712daSGarrett D'AmoreHyphens are used for adjectives; 58*32a712daSGarrett D'Amoreto separate the two parts of a compound word; 59*32a712daSGarrett D'Amoreor to separate a word across two successive lines of text. 60*32a712daSGarrett D'AmoreThe hyphen does not need to be escaped: 61*32a712daSGarrett D'Amore.Bd -unfilled -offset indent 62*32a712daSGarrett D'Amoreblue-eyed 63*32a712daSGarrett D'Amorelorry-driver 64*32a712daSGarrett D'Amore.Ed 65*32a712daSGarrett D'Amore.Pp 66*32a712daSGarrett D'AmoreThe mathematical minus sign is used for negative numbers or subtraction. 67*32a712daSGarrett D'AmoreIt should be written as 68*32a712daSGarrett D'Amore.Sq \e- : 69*32a712daSGarrett D'Amore.Bd -unfilled -offset indent 70*32a712daSGarrett D'Amorea = 3 \e- 1; 71*32a712daSGarrett D'Amoreb = \e-2; 72*32a712daSGarrett D'Amore.Ed 73*32a712daSGarrett D'Amore.Pp 74*32a712daSGarrett D'AmoreThe en-dash is used to separate the two elements of a range, 75*32a712daSGarrett D'Amoreor can be used the same way as an em-dash. 76*32a712daSGarrett D'AmoreIt should be written as 77*32a712daSGarrett D'Amore.Sq \e(en : 78*32a712daSGarrett D'Amore.Bd -unfilled -offset indent 79*32a712daSGarrett D'Amorepp. 95\e(en97. 80*32a712daSGarrett D'AmoreGo away \e(en or else! 81*32a712daSGarrett D'Amore.Ed 82*32a712daSGarrett D'Amore.Pp 83*32a712daSGarrett D'AmoreThe em-dash can be used to show an interruption 84*32a712daSGarrett D'Amoreor can be used the same way as colons, semi-colons, or parentheses. 85*32a712daSGarrett D'AmoreIt should be written as 86*32a712daSGarrett D'Amore.Sq \e(em : 87*32a712daSGarrett D'Amore.Bd -unfilled -offset indent 88*32a712daSGarrett D'AmoreThree things \e(em apples, oranges, and bananas. 89*32a712daSGarrett D'AmoreThis is not that \e(em rather, this is that. 90*32a712daSGarrett D'Amore.Ed 91*32a712daSGarrett D'Amore.Pp 92*32a712daSGarrett D'AmoreNote: 93*32a712daSGarrett D'Amorehyphens, minus signs, and en-dashes look identical under normal ASCII output. 94*32a712daSGarrett D'AmoreOther formats, such as PostScript, render them correctly, 95*32a712daSGarrett D'Amorewith differing widths. 96*32a712daSGarrett D'Amore.Ss Spaces 97*32a712daSGarrett D'AmoreTo separate words in normal text, for indenting and alignment 98*32a712daSGarrett D'Amorein literal context, and when none of the following special cases apply, 99*32a712daSGarrett D'Amorejust use the normal space character 100*32a712daSGarrett D'Amore.Pq Sq \ . 101*32a712daSGarrett D'Amore.Pp 102*32a712daSGarrett D'AmoreWhen filling text, lines may be broken between words, i.e. at space 103*32a712daSGarrett D'Amorecharacters. 104*32a712daSGarrett D'AmoreTo prevent a line break between two particular words, 105*32a712daSGarrett D'Amoreuse the non-breaking space escape sequence 106*32a712daSGarrett D'Amore.Pq Sq \e~ 107*32a712daSGarrett D'Amoreinstead of the normal space character. 108*32a712daSGarrett D'AmoreFor example, the input string 109*32a712daSGarrett D'Amore.Dq number\e~1 110*32a712daSGarrett D'Amorewill be kept together as 111*32a712daSGarrett D'Amore.Dq number\~1 112*32a712daSGarrett D'Amoreon the same output line. 113*32a712daSGarrett D'Amore.Pp 114*32a712daSGarrett D'AmoreOn request and macro lines, the normal space character serves as an 115*32a712daSGarrett D'Amoreargument delimiter. 116*32a712daSGarrett D'AmoreTo include whitespace into arguments, quoting is usually the best choice. 117*32a712daSGarrett D'AmoreIn some cases, using either the non-breaking 118*32a712daSGarrett D'Amore.Pq Sq \e~ 119*32a712daSGarrett D'Amoreor the breaking 120*32a712daSGarrett D'Amore.Pq Sq \e\ \& 121*32a712daSGarrett D'Amorespace escape sequence may be preferable. 122*32a712daSGarrett D'AmoreTo escape macro names and to protect whitespace at the end 123*32a712daSGarrett D'Amoreof input lines, the zero-width space 124*32a712daSGarrett D'Amore.Pq Sq \e& 125*32a712daSGarrett D'Amoreis often useful. 126*32a712daSGarrett D'AmoreFor example, in 127*32a712daSGarrett D'Amore.Xr mdoc 5 , 128*32a712daSGarrett D'Amorea normal space character can be displayed in single quotes in either 129*32a712daSGarrett D'Amoreof the following ways: 130*32a712daSGarrett D'Amore.Pp 131*32a712daSGarrett D'Amore.Dl .Sq \(dq \(dq 132*32a712daSGarrett D'Amore.Dl .Sq \e \e& 133*32a712daSGarrett D'Amore.Ss Quotes 134*32a712daSGarrett D'AmoreOn request and macro lines, the double-quote character 135*32a712daSGarrett D'Amore.Pq Sq \(dq 136*32a712daSGarrett D'Amoreis handled specially to allow quoting. 137*32a712daSGarrett D'AmoreOne way to prevent this special handling is by using the 138*32a712daSGarrett D'Amore.Sq \e(dq 139*32a712daSGarrett D'Amoreescape sequence. 140*32a712daSGarrett D'Amore.Pp 141*32a712daSGarrett D'AmoreNote that on text lines, literal double-quote characters can be used 142*32a712daSGarrett D'Amoreverbatim. 143*32a712daSGarrett D'AmoreAll other quote-like characters can be used verbatim as well, 144*32a712daSGarrett D'Amoreeven on request and macro lines. 145*32a712daSGarrett D'Amore.Ss Periods 146*32a712daSGarrett D'AmoreThe period 147*32a712daSGarrett D'Amore.Pq Sq \&. 148*32a712daSGarrett D'Amoreis handled specially at the beginning of an input line, 149*32a712daSGarrett D'Amorewhere it introduces a 150*32a712daSGarrett D'Amore.Xr roff 5 151*32a712daSGarrett D'Amorerequest or a macro, and when appearing alone as a macro argument in 152*32a712daSGarrett D'Amore.Xr mdoc 5 . 153*32a712daSGarrett D'AmoreIn such situations, prepend a zero-width space 154*32a712daSGarrett D'Amore.Pq Sq \e&. 155*32a712daSGarrett D'Amoreto make it behave like normal text. 156*32a712daSGarrett D'Amore.Pp 157*32a712daSGarrett D'AmoreDo not use the 158*32a712daSGarrett D'Amore.Sq \e. 159*32a712daSGarrett D'Amoreescape sequence. 160*32a712daSGarrett D'AmoreIt does not prevent special handling of the period. 161*32a712daSGarrett D'Amore.Ss Backslashes 162*32a712daSGarrett D'AmoreTo include a literal backslash 163*32a712daSGarrett D'Amore.Pq Sq \e 164*32a712daSGarrett D'Amoreinto the output, use the 165*32a712daSGarrett D'Amore.Pq Sq \ee 166*32a712daSGarrett D'Amoreescape sequence. 167*32a712daSGarrett D'Amore.Pp 168*32a712daSGarrett D'AmoreNote that doubling it 169*32a712daSGarrett D'Amore.Pq Sq \e\e 170*32a712daSGarrett D'Amoreis not the right way to output a backslash. 171*32a712daSGarrett D'AmoreBecause 172*32a712daSGarrett D'Amore.Xr mandoc 1 173*32a712daSGarrett D'Amoredoes not implement full 174*32a712daSGarrett D'Amore.Xr roff 5 175*32a712daSGarrett D'Amorefunctionality, it may work with 176*32a712daSGarrett D'Amore.Xr mandoc 1 , 177*32a712daSGarrett D'Amorebut it may have weird effects on complete 178*32a712daSGarrett D'Amore.Xr roff 5 179*32a712daSGarrett D'Amoreimplementations. 180*32a712daSGarrett D'Amore.Sh SPECIAL CHARACTERS 181*32a712daSGarrett D'AmoreSpecial characters are encoded as 182*32a712daSGarrett D'Amore.Sq \eX 183*32a712daSGarrett D'Amore.Pq for a one-character escape , 184*32a712daSGarrett D'Amore.Sq \e(XX 185*32a712daSGarrett D'Amore.Pq two-character , 186*32a712daSGarrett D'Amoreand 187*32a712daSGarrett D'Amore.Sq \e[N] 188*32a712daSGarrett D'Amore.Pq N-character . 189*32a712daSGarrett D'AmoreFor details, see the 190*32a712daSGarrett D'Amore.Em Special Characters 191*32a712daSGarrett D'Amoresubsection of the 192*32a712daSGarrett D'Amore.Xr roff 5 193*32a712daSGarrett D'Amoremanual. 194*32a712daSGarrett D'Amore.Pp 195*32a712daSGarrett D'AmoreSpacing: 196*32a712daSGarrett D'Amore.Bl -column "Input" "Description" -offset indent -compact 197*32a712daSGarrett D'Amore.It Em Input Ta Em Description 198*32a712daSGarrett D'Amore.It \e~ Ta non-breaking, non-collapsing space 199*32a712daSGarrett D'Amore.It \e Ta breaking, non-collapsing n-width space 200*32a712daSGarrett D'Amore.It \e^ Ta zero-width space 201*32a712daSGarrett D'Amore.It \e% Ta zero-width space 202*32a712daSGarrett D'Amore.It \e& Ta zero-width space 203*32a712daSGarrett D'Amore.It \e| Ta zero-width space 204*32a712daSGarrett D'Amore.It \e0 Ta breaking, non-collapsing digit-width space 205*32a712daSGarrett D'Amore.It \ec Ta removes any trailing space (if applicable) 206*32a712daSGarrett D'Amore.El 207*32a712daSGarrett D'Amore.Pp 208*32a712daSGarrett D'AmoreLines: 209*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 210*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 211*32a712daSGarrett D'Amore.It \e(ba Ta \(ba Ta bar 212*32a712daSGarrett D'Amore.It \e(br Ta \(br Ta box rule 213*32a712daSGarrett D'Amore.It \e(ul Ta \(ul Ta underscore 214*32a712daSGarrett D'Amore.It \e(rl Ta \(rl Ta overline 215*32a712daSGarrett D'Amore.It \e(bb Ta \(bb Ta broken bar 216*32a712daSGarrett D'Amore.It \e(sl Ta \(sl Ta forward slash 217*32a712daSGarrett D'Amore.It \e(rs Ta \(rs Ta backward slash 218*32a712daSGarrett D'Amore.El 219*32a712daSGarrett D'Amore.Pp 220*32a712daSGarrett D'AmoreText markers: 221*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 222*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 223*32a712daSGarrett D'Amore.It \e(ci Ta \(ci Ta circle 224*32a712daSGarrett D'Amore.It \e(bu Ta \(bu Ta bullet 225*32a712daSGarrett D'Amore.It \e(dd Ta \(dd Ta double dagger 226*32a712daSGarrett D'Amore.It \e(dg Ta \(dg Ta dagger 227*32a712daSGarrett D'Amore.It \e(lz Ta \(lz Ta lozenge 228*32a712daSGarrett D'Amore.It \e(sq Ta \(sq Ta white square 229*32a712daSGarrett D'Amore.It \e(ps Ta \(ps Ta paragraph 230*32a712daSGarrett D'Amore.It \e(sc Ta \(sc Ta section 231*32a712daSGarrett D'Amore.It \e(lh Ta \(lh Ta left hand 232*32a712daSGarrett D'Amore.It \e(rh Ta \(rh Ta right hand 233*32a712daSGarrett D'Amore.It \e(at Ta \(at Ta at 234*32a712daSGarrett D'Amore.It \e(sh Ta \(sh Ta hash (pound) 235*32a712daSGarrett D'Amore.It \e(CR Ta \(CR Ta carriage return 236*32a712daSGarrett D'Amore.It \e(OK Ta \(OK Ta check mark 237*32a712daSGarrett D'Amore.El 238*32a712daSGarrett D'Amore.Pp 239*32a712daSGarrett D'AmoreLegal symbols: 240*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 241*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 242*32a712daSGarrett D'Amore.It \e(co Ta \(co Ta copyright 243*32a712daSGarrett D'Amore.It \e(rg Ta \(rg Ta registered 244*32a712daSGarrett D'Amore.It \e(tm Ta \(tm Ta trademarked 245*32a712daSGarrett D'Amore.El 246*32a712daSGarrett D'Amore.Pp 247*32a712daSGarrett D'AmorePunctuation: 248*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 249*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 250*32a712daSGarrett D'Amore.It \e(em Ta \(em Ta em-dash 251*32a712daSGarrett D'Amore.It \e(en Ta \(en Ta en-dash 252*32a712daSGarrett D'Amore.It \e(hy Ta \(hy Ta hyphen 253*32a712daSGarrett D'Amore.It \ee Ta \e Ta back-slash 254*32a712daSGarrett D'Amore.It \e. Ta \. Ta period 255*32a712daSGarrett D'Amore.It \e(r! Ta \(r! Ta upside-down exclamation 256*32a712daSGarrett D'Amore.It \e(r? Ta \(r? Ta upside-down question 257*32a712daSGarrett D'Amore.El 258*32a712daSGarrett D'Amore.Pp 259*32a712daSGarrett D'AmoreQuotes: 260*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 261*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 262*32a712daSGarrett D'Amore.It \e(Bq Ta \(Bq Ta right low double-quote 263*32a712daSGarrett D'Amore.It \e(bq Ta \(bq Ta right low single-quote 264*32a712daSGarrett D'Amore.It \e(lq Ta \(lq Ta left double-quote 265*32a712daSGarrett D'Amore.It \e(rq Ta \(rq Ta right double-quote 266*32a712daSGarrett D'Amore.It \e(oq Ta \(oq Ta left single-quote 267*32a712daSGarrett D'Amore.It \e(cq Ta \(cq Ta right single-quote 268*32a712daSGarrett D'Amore.It \e(aq Ta \(aq Ta apostrophe quote (text) 269*32a712daSGarrett D'Amore.It \e(dq Ta \(dq Ta double quote (text) 270*32a712daSGarrett D'Amore.It \e(Fo Ta \(Fo Ta left guillemet 271*32a712daSGarrett D'Amore.It \e(Fc Ta \(Fc Ta right guillemet 272*32a712daSGarrett D'Amore.It \e(fo Ta \(fo Ta left single guillemet 273*32a712daSGarrett D'Amore.It \e(fc Ta \(fc Ta right single guillemet 274*32a712daSGarrett D'Amore.El 275*32a712daSGarrett D'Amore.Pp 276*32a712daSGarrett D'AmoreBrackets: 277*32a712daSGarrett D'Amore.Bl -column "xxbracketrightbpx" Rendered Description -offset indent -compact 278*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 279*32a712daSGarrett D'Amore.It \e(lB Ta \(lB Ta left bracket 280*32a712daSGarrett D'Amore.It \e(rB Ta \(rB Ta right bracket 281*32a712daSGarrett D'Amore.It \e(lC Ta \(lC Ta left brace 282*32a712daSGarrett D'Amore.It \e(rC Ta \(rC Ta right brace 283*32a712daSGarrett D'Amore.It \e(la Ta \(la Ta left angle 284*32a712daSGarrett D'Amore.It \e(ra Ta \(ra Ta right angle 285*32a712daSGarrett D'Amore.It \e(bv Ta \(bv Ta brace extension 286*32a712daSGarrett D'Amore.It \e[braceex] Ta \[braceex] Ta brace extension 287*32a712daSGarrett D'Amore.It \e[bracketlefttp] Ta \[bracketlefttp] Ta top-left hooked bracket 288*32a712daSGarrett D'Amore.It \e[bracketleftbp] Ta \[bracketleftbp] Ta bottom-left hooked bracket 289*32a712daSGarrett D'Amore.It \e[bracketleftex] Ta \[bracketleftex] Ta left hooked bracket extension 290*32a712daSGarrett D'Amore.It \e[bracketrighttp] Ta \[bracketrighttp] Ta top-right hooked bracket 291*32a712daSGarrett D'Amore.It \e[bracketrightbp] Ta \[bracketrightbp] Ta bottom-right hooked bracket 292*32a712daSGarrett D'Amore.It \e[bracketrightex] Ta \[bracketrightex] Ta right hooked bracket extension 293*32a712daSGarrett D'Amore.It \e(lt Ta \(lt Ta top-left hooked brace 294*32a712daSGarrett D'Amore.It \e[bracelefttp] Ta \[bracelefttp] Ta top-left hooked brace 295*32a712daSGarrett D'Amore.It \e(lk Ta \(lk Ta mid-left hooked brace 296*32a712daSGarrett D'Amore.It \e[braceleftmid] Ta \[braceleftmid] Ta mid-left hooked brace 297*32a712daSGarrett D'Amore.It \e(lb Ta \(lb Ta bottom-left hooked brace 298*32a712daSGarrett D'Amore.It \e[braceleftbp] Ta \[braceleftbp] Ta bottom-left hooked brace 299*32a712daSGarrett D'Amore.It \e[braceleftex] Ta \[braceleftex] Ta left hooked brace extension 300*32a712daSGarrett D'Amore.It \e(rt Ta \(rt Ta top-left hooked brace 301*32a712daSGarrett D'Amore.It \e[bracerighttp] Ta \[bracerighttp] Ta top-right hooked brace 302*32a712daSGarrett D'Amore.It \e(rk Ta \(rk Ta mid-right hooked brace 303*32a712daSGarrett D'Amore.It \e[bracerightmid] Ta \[bracerightmid] Ta mid-right hooked brace 304*32a712daSGarrett D'Amore.It \e(rb Ta \(rb Ta bottom-right hooked brace 305*32a712daSGarrett D'Amore.It \e[bracerightbp] Ta \[bracerightbp] Ta bottom-right hooked brace 306*32a712daSGarrett D'Amore.It \e[bracerightex] Ta \[bracerightex] Ta right hooked brace extension 307*32a712daSGarrett D'Amore.It \e[parenlefttp] Ta \[parenlefttp] Ta top-left hooked parenthesis 308*32a712daSGarrett D'Amore.It \e[parenleftbp] Ta \[parenleftbp] Ta bottom-left hooked parenthesis 309*32a712daSGarrett D'Amore.It \e[parenleftex] Ta \[parenleftex] Ta left hooked parenthesis extension 310*32a712daSGarrett D'Amore.It \e[parenrighttp] Ta \[parenrighttp] Ta top-right hooked parenthesis 311*32a712daSGarrett D'Amore.It \e[parenrightbp] Ta \[parenrightbp] Ta bottom-right hooked parenthesis 312*32a712daSGarrett D'Amore.It \e[parenrightex] Ta \[parenrightex] Ta right hooked parenthesis extension 313*32a712daSGarrett D'Amore.El 314*32a712daSGarrett D'Amore.Pp 315*32a712daSGarrett D'AmoreArrows: 316*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 317*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 318*32a712daSGarrett D'Amore.It \e(<- Ta \(<- Ta left arrow 319*32a712daSGarrett D'Amore.It \e(-> Ta \(-> Ta right arrow 320*32a712daSGarrett D'Amore.It \e(<> Ta \(<> Ta left-right arrow 321*32a712daSGarrett D'Amore.It \e(da Ta \(da Ta down arrow 322*32a712daSGarrett D'Amore.It \e(ua Ta \(ua Ta up arrow 323*32a712daSGarrett D'Amore.It \e(va Ta \(va Ta up-down arrow 324*32a712daSGarrett D'Amore.It \e(lA Ta \(lA Ta left double-arrow 325*32a712daSGarrett D'Amore.It \e(rA Ta \(rA Ta right double-arrow 326*32a712daSGarrett D'Amore.It \e(hA Ta \(hA Ta left-right double-arrow 327*32a712daSGarrett D'Amore.It \e(uA Ta \(uA Ta up double-arrow 328*32a712daSGarrett D'Amore.It \e(dA Ta \(dA Ta down double-arrow 329*32a712daSGarrett D'Amore.It \e(vA Ta \(vA Ta up-down double-arrow 330*32a712daSGarrett D'Amore.El 331*32a712daSGarrett D'Amore.Pp 332*32a712daSGarrett D'AmoreLogical: 333*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 334*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 335*32a712daSGarrett D'Amore.It \e(AN Ta \(AN Ta logical and 336*32a712daSGarrett D'Amore.It \e(OR Ta \(OR Ta logical or 337*32a712daSGarrett D'Amore.It \e(no Ta \(no Ta logical not 338*32a712daSGarrett D'Amore.It \e[tno] Ta \[tno] Ta logical not (text) 339*32a712daSGarrett D'Amore.It \e(te Ta \(te Ta existential quantifier 340*32a712daSGarrett D'Amore.It \e(fa Ta \(fa Ta universal quantifier 341*32a712daSGarrett D'Amore.It \e(st Ta \(st Ta such that 342*32a712daSGarrett D'Amore.It \e(tf Ta \(tf Ta therefore 343*32a712daSGarrett D'Amore.It \e(3d Ta \(3d Ta therefore 344*32a712daSGarrett D'Amore.It \e(or Ta \(or Ta bitwise or 345*32a712daSGarrett D'Amore.El 346*32a712daSGarrett D'Amore.Pp 347*32a712daSGarrett D'AmoreMathematical: 348*32a712daSGarrett D'Amore.Bl -column "xxcoproductxx" "Rendered" "Description" -offset indent -compact 349*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 350*32a712daSGarrett D'Amore.It \e(pl Ta \(pl Ta plus 351*32a712daSGarrett D'Amore.It \e(mi Ta \(mi Ta minus 352*32a712daSGarrett D'Amore.It \e- Ta \- Ta minus (text) 353*32a712daSGarrett D'Amore.It \e(-+ Ta \(-+ Ta minus-plus 354*32a712daSGarrett D'Amore.It \e(+- Ta \(+- Ta plus-minus 355*32a712daSGarrett D'Amore.It \e[t+-] Ta \[t+-] Ta plus-minus (text) 356*32a712daSGarrett D'Amore.It \e(pc Ta \(pc Ta centre-dot 357*32a712daSGarrett D'Amore.It \e(mu Ta \(mu Ta multiply 358*32a712daSGarrett D'Amore.It \e[tmu] Ta \[tmu] Ta multiply (text) 359*32a712daSGarrett D'Amore.It \e(c* Ta \(c* Ta circle-multiply 360*32a712daSGarrett D'Amore.It \e(c+ Ta \(c+ Ta circle-plus 361*32a712daSGarrett D'Amore.It \e(di Ta \(di Ta divide 362*32a712daSGarrett D'Amore.It \e[tdi] Ta \[tdi] Ta divide (text) 363*32a712daSGarrett D'Amore.It \e(f/ Ta \(f/ Ta fraction 364*32a712daSGarrett D'Amore.It \e(** Ta \(** Ta asterisk 365*32a712daSGarrett D'Amore.It \e(<= Ta \(<= Ta less-than-equal 366*32a712daSGarrett D'Amore.It \e(>= Ta \(>= Ta greater-than-equal 367*32a712daSGarrett D'Amore.It \e(<< Ta \(<< Ta much less 368*32a712daSGarrett D'Amore.It \e(>> Ta \(>> Ta much greater 369*32a712daSGarrett D'Amore.It \e(eq Ta \(eq Ta equal 370*32a712daSGarrett D'Amore.It \e(!= Ta \(!= Ta not equal 371*32a712daSGarrett D'Amore.It \e(== Ta \(== Ta equivalent 372*32a712daSGarrett D'Amore.It \e(ne Ta \(ne Ta not equivalent 373*32a712daSGarrett D'Amore.It \e(=~ Ta \(=~ Ta congruent 374*32a712daSGarrett D'Amore.It \e(-~ Ta \(-~ Ta asymptotically congruent 375*32a712daSGarrett D'Amore.It \e(ap Ta \(ap Ta asymptotically similar 376*32a712daSGarrett D'Amore.It \e(~~ Ta \(~~ Ta approximately similar 377*32a712daSGarrett D'Amore.It \e(~= Ta \(~= Ta approximately equal 378*32a712daSGarrett D'Amore.It \e(pt Ta \(pt Ta proportionate 379*32a712daSGarrett D'Amore.It \e(es Ta \(es Ta empty set 380*32a712daSGarrett D'Amore.It \e(mo Ta \(mo Ta element 381*32a712daSGarrett D'Amore.It \e(nm Ta \(nm Ta not element 382*32a712daSGarrett D'Amore.It \e(sb Ta \(sb Ta proper subset 383*32a712daSGarrett D'Amore.It \e(nb Ta \(nb Ta not subset 384*32a712daSGarrett D'Amore.It \e(sp Ta \(sp Ta proper superset 385*32a712daSGarrett D'Amore.It \e(nc Ta \(nc Ta not superset 386*32a712daSGarrett D'Amore.It \e(ib Ta \(ib Ta reflexive subset 387*32a712daSGarrett D'Amore.It \e(ip Ta \(ip Ta reflexive superset 388*32a712daSGarrett D'Amore.It \e(ca Ta \(ca Ta intersection 389*32a712daSGarrett D'Amore.It \e(cu Ta \(cu Ta union 390*32a712daSGarrett D'Amore.It \e(/_ Ta \(/_ Ta angle 391*32a712daSGarrett D'Amore.It \e(pp Ta \(pp Ta perpendicular 392*32a712daSGarrett D'Amore.It \e(is Ta \(is Ta integral 393*32a712daSGarrett D'Amore.It \e[integral] Ta \[integral] Ta integral 394*32a712daSGarrett D'Amore.It \e[sum] Ta \[sum] Ta summation 395*32a712daSGarrett D'Amore.It \e[product] Ta \[product] Ta product 396*32a712daSGarrett D'Amore.It \e[coproduct] Ta \[coproduct] Ta coproduct 397*32a712daSGarrett D'Amore.It \e(gr Ta \(gr Ta gradient 398*32a712daSGarrett D'Amore.It \e(sr Ta \(sr Ta square root 399*32a712daSGarrett D'Amore.It \e[sqrt] Ta \[sqrt] Ta square root 400*32a712daSGarrett D'Amore.It \e(lc Ta \(lc Ta left-ceiling 401*32a712daSGarrett D'Amore.It \e(rc Ta \(rc Ta right-ceiling 402*32a712daSGarrett D'Amore.It \e(lf Ta \(lf Ta left-floor 403*32a712daSGarrett D'Amore.It \e(rf Ta \(rf Ta right-floor 404*32a712daSGarrett D'Amore.It \e(if Ta \(if Ta infinity 405*32a712daSGarrett D'Amore.It \e(Ah Ta \(Ah Ta aleph 406*32a712daSGarrett D'Amore.It \e(Im Ta \(Im Ta imaginary 407*32a712daSGarrett D'Amore.It \e(Re Ta \(Re Ta real 408*32a712daSGarrett D'Amore.It \e(pd Ta \(pd Ta partial differential 409*32a712daSGarrett D'Amore.It \e(-h Ta \(-h Ta Planck constant over 2\(*p 410*32a712daSGarrett D'Amore.It \e[12] Ta \[12] Ta one-half 411*32a712daSGarrett D'Amore.It \e[14] Ta \[14] Ta one-fourth 412*32a712daSGarrett D'Amore.It \e[34] Ta \[34] Ta three-fourths 413*32a712daSGarrett D'Amore.El 414*32a712daSGarrett D'Amore.Pp 415*32a712daSGarrett D'AmoreLigatures: 416*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 417*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 418*32a712daSGarrett D'Amore.It \e(ff Ta \(ff Ta ff ligature 419*32a712daSGarrett D'Amore.It \e(fi Ta \(fi Ta fi ligature 420*32a712daSGarrett D'Amore.It \e(fl Ta \(fl Ta fl ligature 421*32a712daSGarrett D'Amore.It \e(Fi Ta \(Fi Ta ffi ligature 422*32a712daSGarrett D'Amore.It \e(Fl Ta \(Fl Ta ffl ligature 423*32a712daSGarrett D'Amore.It \e(AE Ta \(AE Ta AE 424*32a712daSGarrett D'Amore.It \e(ae Ta \(ae Ta ae 425*32a712daSGarrett D'Amore.It \e(OE Ta \(OE Ta OE 426*32a712daSGarrett D'Amore.It \e(oe Ta \(oe Ta oe 427*32a712daSGarrett D'Amore.It \e(ss Ta \(ss Ta German eszett 428*32a712daSGarrett D'Amore.It \e(IJ Ta \(IJ Ta IJ ligature 429*32a712daSGarrett D'Amore.It \e(ij Ta \(ij Ta ij ligature 430*32a712daSGarrett D'Amore.El 431*32a712daSGarrett D'Amore.Pp 432*32a712daSGarrett D'AmoreAccents: 433*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 434*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 435*32a712daSGarrett D'Amore.It \e(a" Ta \(a" Ta Hungarian umlaut 436*32a712daSGarrett D'Amore.It \e(a- Ta \(a- Ta macron 437*32a712daSGarrett D'Amore.It \e(a. Ta \(a. Ta dotted 438*32a712daSGarrett D'Amore.It \e(a^ Ta \(a^ Ta circumflex 439*32a712daSGarrett D'Amore.It \e(aa Ta \(aa Ta acute 440*32a712daSGarrett D'Amore.It \e' Ta \' Ta acute 441*32a712daSGarrett D'Amore.It \e(ga Ta \(ga Ta grave 442*32a712daSGarrett D'Amore.It \e` Ta \` Ta grave 443*32a712daSGarrett D'Amore.It \e(ab Ta \(ab Ta breve 444*32a712daSGarrett D'Amore.It \e(ac Ta \(ac Ta cedilla 445*32a712daSGarrett D'Amore.It \e(ad Ta \(ad Ta dieresis 446*32a712daSGarrett D'Amore.It \e(ah Ta \(ah Ta caron 447*32a712daSGarrett D'Amore.It \e(ao Ta \(ao Ta ring 448*32a712daSGarrett D'Amore.It \e(a~ Ta \(a~ Ta tilde 449*32a712daSGarrett D'Amore.It \e(ho Ta \(ho Ta ogonek 450*32a712daSGarrett D'Amore.It \e(ha Ta \(ha Ta hat (text) 451*32a712daSGarrett D'Amore.It \e(ti Ta \(ti Ta tilde (text) 452*32a712daSGarrett D'Amore.El 453*32a712daSGarrett D'Amore.Pp 454*32a712daSGarrett D'AmoreAccented letters: 455*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 456*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 457*32a712daSGarrett D'Amore.It \e('A Ta \('A Ta acute A 458*32a712daSGarrett D'Amore.It \e('E Ta \('E Ta acute E 459*32a712daSGarrett D'Amore.It \e('I Ta \('I Ta acute I 460*32a712daSGarrett D'Amore.It \e('O Ta \('O Ta acute O 461*32a712daSGarrett D'Amore.It \e('U Ta \('U Ta acute U 462*32a712daSGarrett D'Amore.It \e('a Ta \('a Ta acute a 463*32a712daSGarrett D'Amore.It \e('e Ta \('e Ta acute e 464*32a712daSGarrett D'Amore.It \e('i Ta \('i Ta acute i 465*32a712daSGarrett D'Amore.It \e('o Ta \('o Ta acute o 466*32a712daSGarrett D'Amore.It \e('u Ta \('u Ta acute u 467*32a712daSGarrett D'Amore.It \e(`A Ta \(`A Ta grave A 468*32a712daSGarrett D'Amore.It \e(`E Ta \(`E Ta grave E 469*32a712daSGarrett D'Amore.It \e(`I Ta \(`I Ta grave I 470*32a712daSGarrett D'Amore.It \e(`O Ta \(`O Ta grave O 471*32a712daSGarrett D'Amore.It \e(`U Ta \(`U Ta grave U 472*32a712daSGarrett D'Amore.It \e(`a Ta \(`a Ta grave a 473*32a712daSGarrett D'Amore.It \e(`e Ta \(`e Ta grave e 474*32a712daSGarrett D'Amore.It \e(`i Ta \(`i Ta grave i 475*32a712daSGarrett D'Amore.It \e(`o Ta \(`i Ta grave o 476*32a712daSGarrett D'Amore.It \e(`u Ta \(`u Ta grave u 477*32a712daSGarrett D'Amore.It \e(~A Ta \(~A Ta tilde A 478*32a712daSGarrett D'Amore.It \e(~N Ta \(~N Ta tilde N 479*32a712daSGarrett D'Amore.It \e(~O Ta \(~O Ta tilde O 480*32a712daSGarrett D'Amore.It \e(~a Ta \(~a Ta tilde a 481*32a712daSGarrett D'Amore.It \e(~n Ta \(~n Ta tilde n 482*32a712daSGarrett D'Amore.It \e(~o Ta \(~o Ta tilde o 483*32a712daSGarrett D'Amore.It \e(:A Ta \(:A Ta dieresis A 484*32a712daSGarrett D'Amore.It \e(:E Ta \(:E Ta dieresis E 485*32a712daSGarrett D'Amore.It \e(:I Ta \(:I Ta dieresis I 486*32a712daSGarrett D'Amore.It \e(:O Ta \(:O Ta dieresis O 487*32a712daSGarrett D'Amore.It \e(:U Ta \(:U Ta dieresis U 488*32a712daSGarrett D'Amore.It \e(:a Ta \(:a Ta dieresis a 489*32a712daSGarrett D'Amore.It \e(:e Ta \(:e Ta dieresis e 490*32a712daSGarrett D'Amore.It \e(:i Ta \(:i Ta dieresis i 491*32a712daSGarrett D'Amore.It \e(:o Ta \(:o Ta dieresis o 492*32a712daSGarrett D'Amore.It \e(:u Ta \(:u Ta dieresis u 493*32a712daSGarrett D'Amore.It \e(:y Ta \(:y Ta dieresis y 494*32a712daSGarrett D'Amore.It \e(^A Ta \(^A Ta circumflex A 495*32a712daSGarrett D'Amore.It \e(^E Ta \(^E Ta circumflex E 496*32a712daSGarrett D'Amore.It \e(^I Ta \(^I Ta circumflex I 497*32a712daSGarrett D'Amore.It \e(^O Ta \(^O Ta circumflex O 498*32a712daSGarrett D'Amore.It \e(^U Ta \(^U Ta circumflex U 499*32a712daSGarrett D'Amore.It \e(^a Ta \(^a Ta circumflex a 500*32a712daSGarrett D'Amore.It \e(^e Ta \(^e Ta circumflex e 501*32a712daSGarrett D'Amore.It \e(^i Ta \(^i Ta circumflex i 502*32a712daSGarrett D'Amore.It \e(^o Ta \(^o Ta circumflex o 503*32a712daSGarrett D'Amore.It \e(^u Ta \(^u Ta circumflex u 504*32a712daSGarrett D'Amore.It \e(,C Ta \(,C Ta cedilla C 505*32a712daSGarrett D'Amore.It \e(,c Ta \(,c Ta cedilla c 506*32a712daSGarrett D'Amore.It \e(/L Ta \(/L Ta stroke L 507*32a712daSGarrett D'Amore.It \e(/l Ta \(/l Ta stroke l 508*32a712daSGarrett D'Amore.It \e(/O Ta \(/O Ta stroke O 509*32a712daSGarrett D'Amore.It \e(/o Ta \(/o Ta stroke o 510*32a712daSGarrett D'Amore.It \e(oA Ta \(oA Ta ring A 511*32a712daSGarrett D'Amore.It \e(oa Ta \(oa Ta ring a 512*32a712daSGarrett D'Amore.El 513*32a712daSGarrett D'Amore.Pp 514*32a712daSGarrett D'AmoreSpecial letters: 515*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 516*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 517*32a712daSGarrett D'Amore.It \e(-D Ta \(-D Ta Eth 518*32a712daSGarrett D'Amore.It \e(Sd Ta \(Sd Ta eth 519*32a712daSGarrett D'Amore.It \e(TP Ta \(TP Ta Thorn 520*32a712daSGarrett D'Amore.It \e(Tp Ta \(Tp Ta thorn 521*32a712daSGarrett D'Amore.It \e(.i Ta \(.i Ta dotless i 522*32a712daSGarrett D'Amore.It \e(.j Ta \(.j Ta dotless j 523*32a712daSGarrett D'Amore.El 524*32a712daSGarrett D'Amore.Pp 525*32a712daSGarrett D'AmoreCurrency: 526*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 527*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 528*32a712daSGarrett D'Amore.It \e(Do Ta \(Do Ta dollar 529*32a712daSGarrett D'Amore.It \e(ct Ta \(ct Ta cent 530*32a712daSGarrett D'Amore.It \e(Eu Ta \(Eu Ta Euro symbol 531*32a712daSGarrett D'Amore.It \e(eu Ta \(eu Ta Euro symbol 532*32a712daSGarrett D'Amore.It \e(Ye Ta \(Ye Ta yen 533*32a712daSGarrett D'Amore.It \e(Po Ta \(Po Ta pound 534*32a712daSGarrett D'Amore.It \e(Cs Ta \(Cs Ta Scandinavian 535*32a712daSGarrett D'Amore.It \e(Fn Ta \(Fn Ta florin 536*32a712daSGarrett D'Amore.El 537*32a712daSGarrett D'Amore.Pp 538*32a712daSGarrett D'AmoreUnits: 539*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 540*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 541*32a712daSGarrett D'Amore.It \e(de Ta \(de Ta degree 542*32a712daSGarrett D'Amore.It \e(%0 Ta \(%0 Ta per-thousand 543*32a712daSGarrett D'Amore.It \e(fm Ta \(fm Ta minute 544*32a712daSGarrett D'Amore.It \e(sd Ta \(sd Ta second 545*32a712daSGarrett D'Amore.It \e(mc Ta \(mc Ta micro 546*32a712daSGarrett D'Amore.El 547*32a712daSGarrett D'Amore.Pp 548*32a712daSGarrett D'AmoreGreek letters: 549*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent -compact 550*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 551*32a712daSGarrett D'Amore.It \e(*A Ta \(*A Ta Alpha 552*32a712daSGarrett D'Amore.It \e(*B Ta \(*B Ta Beta 553*32a712daSGarrett D'Amore.It \e(*G Ta \(*G Ta Gamma 554*32a712daSGarrett D'Amore.It \e(*D Ta \(*D Ta Delta 555*32a712daSGarrett D'Amore.It \e(*E Ta \(*E Ta Epsilon 556*32a712daSGarrett D'Amore.It \e(*Z Ta \(*Z Ta Zeta 557*32a712daSGarrett D'Amore.It \e(*Y Ta \(*Y Ta Eta 558*32a712daSGarrett D'Amore.It \e(*H Ta \(*H Ta Theta 559*32a712daSGarrett D'Amore.It \e(*I Ta \(*I Ta Iota 560*32a712daSGarrett D'Amore.It \e(*K Ta \(*K Ta Kappa 561*32a712daSGarrett D'Amore.It \e(*L Ta \(*L Ta Lambda 562*32a712daSGarrett D'Amore.It \e(*M Ta \(*M Ta Mu 563*32a712daSGarrett D'Amore.It \e(*N Ta \(*N Ta Nu 564*32a712daSGarrett D'Amore.It \e(*C Ta \(*C Ta Xi 565*32a712daSGarrett D'Amore.It \e(*O Ta \(*O Ta Omicron 566*32a712daSGarrett D'Amore.It \e(*P Ta \(*P Ta Pi 567*32a712daSGarrett D'Amore.It \e(*R Ta \(*R Ta Rho 568*32a712daSGarrett D'Amore.It \e(*S Ta \(*S Ta Sigma 569*32a712daSGarrett D'Amore.It \e(*T Ta \(*T Ta Tau 570*32a712daSGarrett D'Amore.It \e(*U Ta \(*U Ta Upsilon 571*32a712daSGarrett D'Amore.It \e(*F Ta \(*F Ta Phi 572*32a712daSGarrett D'Amore.It \e(*X Ta \(*X Ta Chi 573*32a712daSGarrett D'Amore.It \e(*Q Ta \(*Q Ta Psi 574*32a712daSGarrett D'Amore.It \e(*W Ta \(*W Ta Omega 575*32a712daSGarrett D'Amore.It \e(*a Ta \(*a Ta alpha 576*32a712daSGarrett D'Amore.It \e(*b Ta \(*b Ta beta 577*32a712daSGarrett D'Amore.It \e(*g Ta \(*g Ta gamma 578*32a712daSGarrett D'Amore.It \e(*d Ta \(*d Ta delta 579*32a712daSGarrett D'Amore.It \e(*e Ta \(*e Ta epsilon 580*32a712daSGarrett D'Amore.It \e(*z Ta \(*z Ta zeta 581*32a712daSGarrett D'Amore.It \e(*y Ta \(*y Ta eta 582*32a712daSGarrett D'Amore.It \e(*h Ta \(*h Ta theta 583*32a712daSGarrett D'Amore.It \e(*i Ta \(*i Ta iota 584*32a712daSGarrett D'Amore.It \e(*k Ta \(*k Ta kappa 585*32a712daSGarrett D'Amore.It \e(*l Ta \(*l Ta lambda 586*32a712daSGarrett D'Amore.It \e(*m Ta \(*m Ta mu 587*32a712daSGarrett D'Amore.It \e(*n Ta \(*n Ta nu 588*32a712daSGarrett D'Amore.It \e(*c Ta \(*c Ta xi 589*32a712daSGarrett D'Amore.It \e(*o Ta \(*o Ta omicron 590*32a712daSGarrett D'Amore.It \e(*p Ta \(*p Ta pi 591*32a712daSGarrett D'Amore.It \e(*r Ta \(*r Ta rho 592*32a712daSGarrett D'Amore.It \e(*s Ta \(*s Ta sigma 593*32a712daSGarrett D'Amore.It \e(*t Ta \(*t Ta tau 594*32a712daSGarrett D'Amore.It \e(*u Ta \(*u Ta upsilon 595*32a712daSGarrett D'Amore.It \e(*f Ta \(*f Ta phi 596*32a712daSGarrett D'Amore.It \e(*x Ta \(*x Ta chi 597*32a712daSGarrett D'Amore.It \e(*q Ta \(*q Ta psi 598*32a712daSGarrett D'Amore.It \e(*w Ta \(*w Ta omega 599*32a712daSGarrett D'Amore.It \e(+h Ta \(+h Ta theta variant 600*32a712daSGarrett D'Amore.It \e(+f Ta \(+f Ta phi variant 601*32a712daSGarrett D'Amore.It \e(+p Ta \(+p Ta pi variant 602*32a712daSGarrett D'Amore.It \e(+e Ta \(+e Ta epsilon variant 603*32a712daSGarrett D'Amore.It \e(ts Ta \(ts Ta sigma terminal 604*32a712daSGarrett D'Amore.El 605*32a712daSGarrett D'Amore.Sh PREDEFINED STRINGS 606*32a712daSGarrett D'AmorePredefined strings are inherited from the macro packages of historical 607*32a712daSGarrett D'Amoretroff implementations. 608*32a712daSGarrett D'AmoreThey are 609*32a712daSGarrett D'Amore.Em not recommended 610*32a712daSGarrett D'Amorefor use, as they differ across implementations. 611*32a712daSGarrett D'AmoreManuals using these predefined strings are almost certainly not 612*32a712daSGarrett D'Amoreportable. 613*32a712daSGarrett D'Amore.Pp 614*32a712daSGarrett D'AmoreTheir syntax is similar to special characters, using 615*32a712daSGarrett D'Amore.Sq \e*X 616*32a712daSGarrett D'Amore.Pq for a one-character escape , 617*32a712daSGarrett D'Amore.Sq \e*(XX 618*32a712daSGarrett D'Amore.Pq two-character , 619*32a712daSGarrett D'Amoreand 620*32a712daSGarrett D'Amore.Sq \e*[N] 621*32a712daSGarrett D'Amore.Pq N-character . 622*32a712daSGarrett D'AmoreFor details, see the 623*32a712daSGarrett D'Amore.Em Predefined Strings 624*32a712daSGarrett D'Amoresubsection of the 625*32a712daSGarrett D'Amore.Xr roff 5 626*32a712daSGarrett D'Amoremanual. 627*32a712daSGarrett D'Amore.Bl -column "Input" "Rendered" "Description" -offset indent 628*32a712daSGarrett D'Amore.It Em Input Ta Em Rendered Ta Em Description 629*32a712daSGarrett D'Amore.It \e*(Ba Ta \*(Ba Ta vertical bar 630*32a712daSGarrett D'Amore.It \e*(Ne Ta \*(Ne Ta not equal 631*32a712daSGarrett D'Amore.It \e*(Ge Ta \*(Ge Ta greater-than-equal 632*32a712daSGarrett D'Amore.It \e*(Le Ta \*(Le Ta less-than-equal 633*32a712daSGarrett D'Amore.It \e*(Gt Ta \*(Gt Ta greater-than 634*32a712daSGarrett D'Amore.It \e*(Lt Ta \*(Lt Ta less-than 635*32a712daSGarrett D'Amore.It \e*(Pm Ta \*(Pm Ta plus-minus 636*32a712daSGarrett D'Amore.It \e*(If Ta \*(If Ta infinity 637*32a712daSGarrett D'Amore.It \e*(Pi Ta \*(Pi Ta pi 638*32a712daSGarrett D'Amore.It \e*(Na Ta \*(Na Ta NaN 639*32a712daSGarrett D'Amore.It \e*(Am Ta \*(Am Ta ampersand 640*32a712daSGarrett D'Amore.It \e*R Ta \*R Ta restricted mark 641*32a712daSGarrett D'Amore.It \e*(Tm Ta \*(Tm Ta trade mark 642*32a712daSGarrett D'Amore.It \e*q Ta \*q Ta double-quote 643*32a712daSGarrett D'Amore.It \e*(Rq Ta \*(Rq Ta right-double-quote 644*32a712daSGarrett D'Amore.It \e*(Lq Ta \*(Lq Ta left-double-quote 645*32a712daSGarrett D'Amore.It \e*(lp Ta \*(lp Ta right-parenthesis 646*32a712daSGarrett D'Amore.It \e*(rp Ta \*(rp Ta left-parenthesis 647*32a712daSGarrett D'Amore.It \e*(lq Ta \*(lq Ta left double-quote 648*32a712daSGarrett D'Amore.It \e*(rq Ta \*(rq Ta right double-quote 649*32a712daSGarrett D'Amore.It \e*(ua Ta \*(ua Ta up arrow 650*32a712daSGarrett D'Amore.It \e*(va Ta \*(va Ta up-down arrow 651*32a712daSGarrett D'Amore.It \e*(<= Ta \*(<= Ta less-than-equal 652*32a712daSGarrett D'Amore.It \e*(>= Ta \*(>= Ta greater-than-equal 653*32a712daSGarrett D'Amore.It \e*(aa Ta \*(aa Ta acute 654*32a712daSGarrett D'Amore.It \e*(ga Ta \*(ga Ta grave 655*32a712daSGarrett D'Amore.It \e*(Px Ta \*(Px Ta POSIX standard name 656*32a712daSGarrett D'Amore.It \e*(Ai Ta \*(Ai Ta ANSI standard name 657*32a712daSGarrett D'Amore.El 658*32a712daSGarrett D'Amore.Sh UNICODE CHARACTERS 659*32a712daSGarrett D'AmoreThe escape sequence 660*32a712daSGarrett D'Amore.Pp 661*32a712daSGarrett D'Amore.Dl \e[uXXXX] 662*32a712daSGarrett D'Amore.Pp 663*32a712daSGarrett D'Amoreis interpreted as a Unicode codepoint. 664*32a712daSGarrett D'AmoreThe codepoint must be in the range above U+0080 and less than U+10FFFF. 665*32a712daSGarrett D'AmoreFor compatibility, points must be zero-padded to four characters; if 666*32a712daSGarrett D'Amoregreater than four characters, no zero padding is allowed. 667*32a712daSGarrett D'AmoreUnicode surrogates are not allowed. 668*32a712daSGarrett D'Amore.\" .Pp 669*32a712daSGarrett D'Amore.\" Unicode glyphs attenuate to the 670*32a712daSGarrett D'Amore.\" .Sq \&? 671*32a712daSGarrett D'Amore.\" character if invalid or not rendered by current output media. 672*32a712daSGarrett D'Amore.Sh NUMBERED CHARACTERS 673*32a712daSGarrett D'AmoreFor backward compatibility with existing manuals, 674*32a712daSGarrett D'Amore.Xr mandoc 1 675*32a712daSGarrett D'Amorealso supports the 676*32a712daSGarrett D'Amore.Pp 677*32a712daSGarrett D'Amore.Dl \eN\(aq Ns Ar number Ns \(aq 678*32a712daSGarrett D'Amore.Pp 679*32a712daSGarrett D'Amoreescape sequence, inserting the character 680*32a712daSGarrett D'Amore.Ar number 681*32a712daSGarrett D'Amorefrom the current character set into the output. 682*32a712daSGarrett D'AmoreOf course, this is inherently non-portable and is already marked 683*32a712daSGarrett D'Amoreas deprecated in the Heirloom roff manual. 684*32a712daSGarrett D'AmoreFor example, do not use \eN'34', use \e(dq, or even the plain 685*32a712daSGarrett D'Amore.Sq \(dq 686*32a712daSGarrett D'Amorecharacter where possible. 687*32a712daSGarrett D'Amore.Sh COMPATIBILITY 688*32a712daSGarrett D'AmoreThis section documents compatibility between mandoc and other other 689*32a712daSGarrett D'Amoretroff implementations, at this time limited to GNU troff 690*32a712daSGarrett D'Amore.Pq Qq groff . 691*32a712daSGarrett D'Amore.Pp 692*32a712daSGarrett D'Amore.Bl -dash -compact 693*32a712daSGarrett D'Amore.It 694*32a712daSGarrett D'AmoreThe \eN\(aq\(aq escape sequence is limited to printable characters; in 695*32a712daSGarrett D'Amoregroff, it accepts arbitrary character numbers. 696*32a712daSGarrett D'Amore.It 697*32a712daSGarrett D'AmoreIn 698*32a712daSGarrett D'Amore.Fl T Ns Cm ascii , 699*32a712daSGarrett D'Amorethe 700*32a712daSGarrett D'Amore\e(ss, \e(nm, \e(nb, \e(nc, \e(ib, \e(ip, \e(pp, \e[sum], \e[product], 701*32a712daSGarrett D'Amore\e[coproduct], \e(gr, \e(\-h, and \e(a. special characters render 702*32a712daSGarrett D'Amoredifferently between mandoc and groff. 703*32a712daSGarrett D'Amore.It 704*32a712daSGarrett D'AmoreIn 705*32a712daSGarrett D'Amore.Fl T Ns Cm html 706*32a712daSGarrett D'Amoreand 707*32a712daSGarrett D'Amore.Fl T Ns Cm xhtml , 708*32a712daSGarrett D'Amorethe \e(~=, \e(nb, and \e(nc special characters render differently 709*32a712daSGarrett D'Amorebetween mandoc and groff. 710*32a712daSGarrett D'Amore.It 711*32a712daSGarrett D'AmoreThe 712*32a712daSGarrett D'Amore.Fl T Ns Cm ps 713*32a712daSGarrett D'Amoreand 714*32a712daSGarrett D'Amore.Fl T Ns Cm pdf 715*32a712daSGarrett D'Amoremodes format like 716*32a712daSGarrett D'Amore.Fl T Ns Cm ascii 717*32a712daSGarrett D'Amoreinstead of rendering glyphs as in groff. 718*32a712daSGarrett D'Amore.It 719*32a712daSGarrett D'AmoreThe \e[radicalex], \e[sqrtex], and \e(ru special characters have been omitted 720*32a712daSGarrett D'Amorefrom mandoc either because they are poorly documented or they have no 721*32a712daSGarrett D'Amoreknown representation. 722*32a712daSGarrett D'Amore.El 723*32a712daSGarrett D'Amore.Sh SEE ALSO 724*32a712daSGarrett D'Amore.Xr mandoc 1 , 725*32a712daSGarrett D'Amore.Xr man 5 , 726*32a712daSGarrett D'Amore.Xr mdoc 5 , 727*32a712daSGarrett D'Amore.Xr roff 5 728*32a712daSGarrett D'Amore.Sh AUTHORS 729*32a712daSGarrett D'AmoreThe 730*32a712daSGarrett D'Amore.Nm 731*32a712daSGarrett D'Amoremanual page was written by 732*32a712daSGarrett D'Amore.An Kristaps Dzonsons , 733*32a712daSGarrett D'Amore.Mt kristaps@bsd.lv . 734*32a712daSGarrett D'Amore.Sh CAVEATS 735*32a712daSGarrett D'AmoreThe 736*32a712daSGarrett D'Amore.Sq \e*(Ba 737*32a712daSGarrett D'Amoreescape mimics the behaviour of the 738*32a712daSGarrett D'Amore.Sq \&| 739*32a712daSGarrett D'Amorecharacter in 740*32a712daSGarrett D'Amore.Xr mdoc 5 ; 741*32a712daSGarrett D'Amorethus, if you wish to render a vertical bar with no side effects, use 742*32a712daSGarrett D'Amorethe 743*32a712daSGarrett D'Amore.Sq \e(ba 744*32a712daSGarrett D'Amoreescape. 745