xref: /titanic_44/usr/src/cmd/mandoc/st.in (revision 95c635efb7c3b86efc493e0447eaec7aecca3f0f)
1*95c635efSGarrett D'Amore/*	$Id: st.in,v 1.19 2012/02/26 21:47:09 schwarze Exp $ */
2*95c635efSGarrett D'Amore/*
3*95c635efSGarrett D'Amore * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4*95c635efSGarrett D'Amore *
5*95c635efSGarrett D'Amore * Permission to use, copy, modify, and distribute this software for any
6*95c635efSGarrett D'Amore * purpose with or without fee is hereby granted, provided that the above
7*95c635efSGarrett D'Amore * copyright notice and this permission notice appear in all copies.
8*95c635efSGarrett D'Amore *
9*95c635efSGarrett D'Amore * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*95c635efSGarrett D'Amore * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*95c635efSGarrett D'Amore * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*95c635efSGarrett D'Amore * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*95c635efSGarrett D'Amore * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*95c635efSGarrett D'Amore * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*95c635efSGarrett D'Amore * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*95c635efSGarrett D'Amore */
17*95c635efSGarrett D'Amore
18*95c635efSGarrett D'Amore/*
19*95c635efSGarrett D'Amore * This file defines the .St macro arguments.  If you add a new
20*95c635efSGarrett D'Amore * standard, make sure that the left-and side corresponds to the .St
21*95c635efSGarrett D'Amore * argument (like .St -p1003.1) and the right-hand side corresponds to
22*95c635efSGarrett D'Amore * the formatted output string.
23*95c635efSGarrett D'Amore *
24*95c635efSGarrett D'Amore * Be sure to escape strings.
25*95c635efSGarrett D'Amore * The non-breaking blanks prevent ending an output line right before
26*95c635efSGarrett D'Amore * a number.  Groff prevent line breaks at the same places.
27*95c635efSGarrett D'Amore *
28*95c635efSGarrett D'Amore * REMEMBER TO ADD NEW STANDARDS TO MDOC.7!
29*95c635efSGarrett D'Amore */
30*95c635efSGarrett D'Amore
31*95c635efSGarrett D'AmoreLINE("-p1003.1-88",	"IEEE Std 1003.1-1988 (\\(lqPOSIX.1\\(rq)")
32*95c635efSGarrett D'AmoreLINE("-p1003.1-90",	"IEEE Std 1003.1-1990 (\\(lqPOSIX.1\\(rq)")
33*95c635efSGarrett D'AmoreLINE("-p1003.1-96",	"ISO/IEC 9945-1:1996 (\\(lqPOSIX.1\\(rq)")
34*95c635efSGarrett D'AmoreLINE("-p1003.1-2001",	"IEEE Std 1003.1-2001 (\\(lqPOSIX.1\\(rq)")
35*95c635efSGarrett D'AmoreLINE("-p1003.1-2004",	"IEEE Std 1003.1-2004 (\\(lqPOSIX.1\\(rq)")
36*95c635efSGarrett D'AmoreLINE("-p1003.1-2008",	"IEEE Std 1003.1-2008 (\\(lqPOSIX.1\\(rq)")
37*95c635efSGarrett D'AmoreLINE("-p1003.1",	"IEEE Std 1003.1 (\\(lqPOSIX.1\\(rq)")
38*95c635efSGarrett D'AmoreLINE("-p1003.1b",	"IEEE Std 1003.1b (\\(lqPOSIX.1\\(rq)")
39*95c635efSGarrett D'AmoreLINE("-p1003.1b-93",	"IEEE Std 1003.1b-1993 (\\(lqPOSIX.1\\(rq)")
40*95c635efSGarrett D'AmoreLINE("-p1003.1c-95",	"IEEE Std 1003.1c-1995 (\\(lqPOSIX.1\\(rq)")
41*95c635efSGarrett D'AmoreLINE("-p1003.1g-2000",	"IEEE Std 1003.1g-2000 (\\(lqPOSIX.1\\(rq)")
42*95c635efSGarrett D'AmoreLINE("-p1003.1i-95",	"IEEE Std 1003.1i-1995 (\\(lqPOSIX.1\\(rq)")
43*95c635efSGarrett D'AmoreLINE("-p1003.2-92",	"IEEE Std 1003.2-1992 (\\(lqPOSIX.2\\(rq)")
44*95c635efSGarrett D'AmoreLINE("-p1003.2a-92",	"IEEE Std 1003.2a-1992 (\\(lqPOSIX.2\\(rq)")
45*95c635efSGarrett D'AmoreLINE("-p1387.2-95",	"IEEE Std 1387.2-1995 (\\(lqPOSIX.7.2\\(rq)")
46*95c635efSGarrett D'AmoreLINE("-p1003.2",	"IEEE Std 1003.2 (\\(lqPOSIX.2\\(rq)")
47*95c635efSGarrett D'AmoreLINE("-p1387.2",	"IEEE Std 1387.2 (\\(lqPOSIX.7.2\\(rq)")
48*95c635efSGarrett D'AmoreLINE("-isoC",		"ISO/IEC 9899:1990 (\\(lqISO\\~C90\\(rq)")
49*95c635efSGarrett D'AmoreLINE("-isoC-90",	"ISO/IEC 9899:1990 (\\(lqISO\\~C90\\(rq)")
50*95c635efSGarrett D'AmoreLINE("-isoC-amd1",	"ISO/IEC 9899/AMD1:1995 (\\(lqISO\\~C90, Amendment 1\\(rq)")
51*95c635efSGarrett D'AmoreLINE("-isoC-tcor1",	"ISO/IEC 9899/TCOR1:1994 (\\(lqISO\\~C90, Technical Corrigendum 1\\(rq)")
52*95c635efSGarrett D'AmoreLINE("-isoC-tcor2",	"ISO/IEC 9899/TCOR2:1995 (\\(lqISO\\~C90, Technical Corrigendum 2\\(rq)")
53*95c635efSGarrett D'AmoreLINE("-isoC-99",	"ISO/IEC 9899:1999 (\\(lqISO\\~C99\\(rq)")
54*95c635efSGarrett D'AmoreLINE("-isoC-2011",	"ISO/IEC 9899:2011 (\\(lqISO\\~C11\\(rq)")
55*95c635efSGarrett D'AmoreLINE("-iso9945-1-90",	"ISO/IEC 9945-1:1990 (\\(lqPOSIX.1\\(rq)")
56*95c635efSGarrett D'AmoreLINE("-iso9945-1-96",	"ISO/IEC 9945-1:1996 (\\(lqPOSIX.1\\(rq)")
57*95c635efSGarrett D'AmoreLINE("-iso9945-2-93",	"ISO/IEC 9945-2:1993 (\\(lqPOSIX.2\\(rq)")
58*95c635efSGarrett D'AmoreLINE("-ansiC",		"ANSI X3.159-1989 (\\(lqANSI\\~C89\\(rq)")
59*95c635efSGarrett D'AmoreLINE("-ansiC-89",	"ANSI X3.159-1989 (\\(lqANSI\\~C89\\(rq)")
60*95c635efSGarrett D'AmoreLINE("-ansiC-99",	"ANSI/ISO/IEC 9899-1999 (\\(lqANSI\\~C99\\(rq)")
61*95c635efSGarrett D'AmoreLINE("-ieee754",	"IEEE Std 754-1985")
62*95c635efSGarrett D'AmoreLINE("-iso8802-3",	"ISO 8802-3: 1989")
63*95c635efSGarrett D'AmoreLINE("-iso8601",	"ISO 8601")
64*95c635efSGarrett D'AmoreLINE("-ieee1275-94",	"IEEE Std 1275-1994 (\\(lqOpen Firmware\\(rq)")
65*95c635efSGarrett D'AmoreLINE("-xpg3",		"X/Open Portability Guide Issue\\~3 (\\(lqXPG3\\(rq)")
66*95c635efSGarrett D'AmoreLINE("-xpg4",		"X/Open Portability Guide Issue\\~4 (\\(lqXPG4\\(rq)")
67*95c635efSGarrett D'AmoreLINE("-xpg4.2",		"X/Open Portability Guide Issue\\~4, Version\\~2 (\\(lqXPG4.2\\(rq)")
68*95c635efSGarrett D'AmoreLINE("-xpg4.3",		"X/Open Portability Guide Issue\\~4, Version\\~3 (\\(lqXPG4.3\\(rq)")
69*95c635efSGarrett D'AmoreLINE("-xbd5",		"X/Open Base Definitions Issue\\~5 (\\(lqXBD5\\(rq)")
70*95c635efSGarrett D'AmoreLINE("-xcu5",		"X/Open Commands and Utilities Issue\\~5 (\\(lqXCU5\\(rq)")
71*95c635efSGarrett D'AmoreLINE("-xsh5",		"X/Open System Interfaces and Headers Issue\\~5 (\\(lqXSH5\\(rq)")
72*95c635efSGarrett D'AmoreLINE("-xns5",		"X/Open Networking Services Issue\\~5 (\\(lqXNS5\\(rq)")
73*95c635efSGarrett D'AmoreLINE("-xns5.2",		"X/Open Networking Services Issue\\~5.2 (\\(lqXNS5.2\\(rq)")
74*95c635efSGarrett D'AmoreLINE("-xns5.2d2.0",	"X/Open Networking Services Issue\\~5.2 Draft\\~2.0 (\\(lqXNS5.2D2.0\\(rq)")
75*95c635efSGarrett D'AmoreLINE("-xcurses4.2",	"X/Open Curses Issue\\~4, Version\\~2 (\\(lqXCURSES4.2\\(rq)")
76*95c635efSGarrett D'AmoreLINE("-susv2",		"Version\\~2 of the Single UNIX Specification")
77*95c635efSGarrett D'AmoreLINE("-susv3",		"Version\\~3 of the Single UNIX Specification")
78*95c635efSGarrett D'AmoreLINE("-svid4",		"System\\~V Interface Definition, Fourth Edition (\\(lqSVID4\\(rq)")
79