[project @ 2000-04-27 11:11:55 by simonmar]
[ghc-hetmet.git] / docs / docbook-cheat-sheet.sgml
1 <!DOCTYPE Article PUBLIC "-//OASIS//DTD DocBook V3.1//EN">
2
3 <Article>
4
5 <ArtHeader>
6
7 <Title>Using DocBook to write GHC documentation</Title>
8 <Author><OtherName>The GHC Team</OtherName></Author>
9 <Address><Email>glasgow-haskell-&lcub;users,bugs&rcub;@dcs.gla.ac.uk</Email></Address>
10 <PubDate>January 2000</PubDate>
11
12 </ArtHeader>
13
14
15 <Sect1><Title>Getting the DocBook tools</Title>
16
17 <Para>
18 See the building guide.
19 </Para>
20
21 </Sect1>
22
23
24 <Sect1><Title>Document layout</Title>
25
26 <Para>
27 The GHC documentation is written using DocBook 3.1, so the DTD line should be:
28 </Para>
29
30 <Screen>
31 &lt;!DOCTYPE Article PUBLIC "-//OASIS//DTD DocBook V3.1//EN"&gt;
32 </Screen>
33
34 <Para>
35 This guide is <Emphasis>not</Emphasis> meant to teach you how to write DocBook; read the <ULink URL="http://www.docbook.org/">DocBook book</ULink> for that. It is more of a reference than a tutorial, so see the <ULink URL="http://www.oasis-open.org/docbook/">DocBook home page</ULink> for other links.
36 </Para>
37
38 <Para>
39 The rest of this section outlines the use of several tags which may not be obvious (DocBook is rather scholastic in style: it has tags for many things from C function prototypes to keyboard bindings; at the same time it has many omissions and oddities). The current scheme has many infelicities, partly because it was dreamt up in a hurry while the author was learning DocBook and converting the documentation thereto, and partly because DocBook is rather C-centric.
40 </Para>
41
42 <VariableList>
43
44 <VarListEntry><Term><SGMLTag class="StartTag">Command</SGMLTag></Term>
45 <ListItem>
46 <Para>
47 Used for commands typed into interactive sessions (e.g. <Command>cp foo bar</Command> and the names of programs such as <Command>gmake</Command>.
48 </Para>
49 </ListItem>
50 </VarListEntry>
51
52 <VarListEntry><Term><SGMLTag class="StartTag">Constant</SGMLTag></Term>
53 <ListItem>
54 <Para>
55 Used for system constants such as <Constant>U_MAXINT</Constant> and <Filename>Makefile</Filename> variables like <Constant>SRC_FILES</Constant> (because they are usually constant for a given run of <Command>make</Command>, and hence have a constant feel to them).
56 </Para>
57 </ListItem>
58 </VarListEntry>
59
60 <VarListEntry><Term><SGMLTag class="StartTag">Email</SGMLTag></Term>
61 <ListItem>
62 <Para>
63 For email addresses. This is a tag that's easy to overlook if you don't know it's there.
64 </Para>
65 </ListItem>
66 </VarListEntry>
67
68 <VarListEntry><Term><SGMLTag class="StartTag">Filename</SGMLTag></Term>
69 <ListItem>
70 <Para>
71 Used for paths, filenames, file extensions.
72 </Para>
73 </ListItem>
74 </VarListEntry>
75
76 <VarListEntry><Term><SGMLTag class="StartTag">Function</SGMLTag></Term>
77 <ListItem>
78 <Para>
79 Used for functions and constructors.
80 </Para>
81 </ListItem>
82 </VarListEntry>
83
84 <VarListEntry><Term><SGMLTag class="StartTag">IndexTerm</SGMLTag></Term>
85 <ListItem>
86 <Para>
87 The normal way to mark up an index term is <Literal>&lt;IndexTerm&gt;&lt;Primary&gt;term&lt/Primary&gt;&lt;/IndexTerm&gt;</Literal>.
88 </Para>
89 </ListItem>
90 </VarListEntry>
91
92 <VarListEntry><Term><SGMLTag class="StartTag">KeyCap</SGMLTag></Term><Term><SGMLTag class="StartTag">KeyCombo</SGMLTag></Term>
93 <ListItem>
94 <Para>
95 Some more tags you may miss. Used for combinations such as <KeyCombo><KeyCap>Control</KeyCap><KeyCap>D</KeyCap></KeyCombo>.
96 </Para>
97 </ListItem>
98 </VarListEntry>
99
100 <VarListEntry><Term><SGMLTag class="StartTag">Literal</SGMLTag></Term>
101 <ListItem>
102 <Para>
103 Used for everything that should appear in typewriter font that has no other obvious tag: types, monads, small snippets of program text that are formatted inline, and the like.
104 </Para>
105 </ListItem>
106 </VarListEntry>
107
108 <VarListEntry><Term><SGMLTag class="StartTag">Option</SGMLTag></Term>
109 <ListItem>
110 <Para>
111 Used for compiler options and similar.
112 </Para>
113 </ListItem>
114 </VarListEntry>
115
116 <VarListEntry><Term><SGMLTag class="StartTag">ProgramListing</SGMLTag></Term>
117 <ListItem>
118 <Para>
119 For displayed program listings (including shell scripts).
120 </Para>
121 </ListItem>
122 </VarListEntry>
123
124 <VarListEntry><Term><SGMLTag class="StartTag">Screen</SGMLTag></Term>
125 <ListItem>
126 <Para>
127 For displayed screen dumps, such as portions of shell interaction. It's easy to tell the difference between these and shell scripts: the latter lack a shell prompt.
128 </Para>
129 </ListItem>
130 </VarListEntry>
131
132 <VarListEntry><Term><SGMLTag class="StartTag">VarName</SGMLTag></Term>
133 <ListItem>
134 <Para>
135 Used for variables, but not type variables.
136 </Para>
137 </ListItem>
138 </VarListEntry>
139
140 </VariableList>
141
142 </Sect1>
143
144 <Sect1><Title>Tables</Title>
145
146 <Para>
147 Tables are quite complicated to write in SGML (as in HTML, there are lots of fiddly tags), so here's an example you can cannibalise. In the spirit of the LaTeX short introduction I don't repeat all the markup verbatim; you have to look at the source for that.
148 </Para>
149
150 <Para>
151 <InformalTable>
152 <TGroup cols="3">
153 <ColSpec Colname="one" Align="Left" Colsep="0">
154 <ColSpec Colname="two" Align="Center" Colsep="0">
155 <ColSpec Colname="three" Align="Right" Colsep="0">
156 <TBody>
157
158 <Row>
159 <Entry>Here's</Entry>
160 <Entry>a sample</Entry>
161 <Entry>table</Entry>
162 </Row>
163
164 <Row>
165 <Entry>With differently</Entry>
166 <Entry>aligned</Entry>
167 <Entry>cells</Entry>
168 </Row>
169
170 <Row>
171 <Entry namest="one" nameend="three" morerows="1"><Para>
172 There's not much else to it. Entries can span both extra rows and extra columns; just be careful when using block markup (such as <SGMLTag class="starttag">Para</SGMLTag>s) within an <SGMLTag class="starttag">Entry</SGMLTag> that there is no space between the open and close <SGMLTag class="starttag">Entry</SGMLTag> tags and the adjacent text, as otherwise you will suffer from <ULink URL="http://www.docbook.org/tdg/html/entry.html">Pernicious Mixed Content</ULink> (the parser will think you're using inline markup).</Para></Entry>
173 </Row>
174
175 </TBody>
176
177 </TGroup>
178 </InformalTable>
179 </Para>
180
181 </Sect1>
182
183 </Article>