Colin spotted a sizeof/lenof confusion which we think has been
[sgt/halibut] / doc / input.but
CommitLineData
11f2edfa 1\C{input} Halibut input format
2
3This chapter describes the format in which you should write
4documents to be processed by Halibut.
5
6\H{input-basics} The basics
7
8Halibut's input files mostly look like ordinary ASCII text files;
9you can edit them with any text editor you like.
10
339cbe09 11Writing \i{paragraphs of ordinary text} is very simple: you just
12write ordinary text in the ordinary way. You can wrap a paragraph
13across more than one line using \i{line breaks} in the text file,
14and Halibut will ignore this when it \I{wrapping paragraphs}rewraps
15the paragraph for each output format. To separate paragraphs, use a
16\i{blank line} (i.e. two consecutive line breaks). For example, a
17fragment of Halibut input looking like this:
11f2edfa 18
19\c This is a line of text.
20\c This is another line of text.
21\c
22\c This line is separated from the previous one by a blank line.
23
24will produce two paragraphs looking like this:
25
26\quote{
27This is a line of text.
28This is another line of text.
29
30This line is separated from the previous one by a blank line.
31}
32
33The first two lines of the input have been merged together into a
34single paragraph, and the line break in the input file was treated
35identically to the spaces between the individual words.
36
339cbe09 37Halibut is designed to have very few \I{escaping, special
38characters}\i{special characters}. The only printable characters in
39Halibut input which will not be treated exactly literally in the
40output are the \i{backslash} (\c{\\}) and the \i{braces} (\c{\{} and
41\c{\}}). If you do not use these characters, \e{everything} else you
42might type in normal ASCII text is perfectly safe. If you do need to
43use any of those three characters in your document, you will have to
44precede each one with a backslash. Hence, for example, you could
45write
11f2edfa 46
47\c This \\ is a backslash, and these are \{braces\}.
48
49and Halibut would generate the text
50
51\quote{
52This \\ is a backslash, and these are \{braces\}.
53}
54
e34ba5c3 55If you want to write your input file in a character set other than
56ASCII, you can do so by using the \c{\\cfg\{input-charset\}}
57command. See \k{input-config} for details of this.
58
339cbe09 59\H{input-inline} Simple \i{inline formatting commands}
11f2edfa 60
61Halibut formatting commands all begin with a backslash, followed by
62a word or character identifying the command. Some of them then use
63braces to surround one or more pieces of text acted on by the
64command. (In fact, the \c{\\\\}, \c{\\\{} and \c{\\\}} sequences you
65met in \k{input-basics} are themselves formatting commands.)
66
67This section describes some simple formatting commands you can use
68in Halibut documents. The commands in this section are \e{inline}
69commands, which means you can use them in the middle of a paragraph.
70\K{input-para} describes some \e{paragraph} commands, which affect a
71whole paragraph at a time.
72
c63ce2c7 73Many of these commands are followed by a pair of braces surrounding
339cbe09 74some text. In all cases, it is perfectly safe to have a \i{line break}
c63ce2c7 75(in the input file) within those braces; Halibut will treat that
76exactly the same as a space. For example, these two paragraphs will
77be treated identically:
78
79\c Here is some \e{emphasised
80\c text}.
81\c
82\c Here is some \e{emphasised text}.
83
11f2edfa 84\S{input-emph} \c{\\e}: Emphasising text
85
fc8e7adb 86Possibly the most obvious piece of formatting you might want
87to use in a document is \i\e{emphasis}.
88To emphasise text, you use the \i\c{\\e} command, and follow it up
89with the text to be emphasised in braces. For example, the first
90sentence in this paragraph was generated using the Halibut input
11f2edfa 91
fc8e7adb 92\c Possibly the most obvious piece of formatting you might want
93\c to use in a document is \e{emphasis}.
11f2edfa 94
339cbe09 95\S{input-code} \c{\\c} and \c{\\cw}: Displaying \i{computer code} inline
11f2edfa 96
97Halibut was primarily designed to produce software manuals. It can
98be used for other types of document as well, but software manuals
99are its speciality.
100
101In software manuals, you often want to format text in a way that
339cbe09 102indicates that it is something you might see displayed \i{verbatim}
103on a computer screen. In printed manuals, this is typically done by
104setting that text in a font which is obviously \I{fixed-width
105font}fixed-width. This provides a visual cue that the text being
106displayed is code, and it also ensures that punctuation marks are
107clearly separated and shown individually (so that a user can copy
108the text accurately and conveniently).
11f2edfa 109
110Halibut provides \e{two} commands for this, which are subtly
339cbe09 111different. The names of those commands are \i\c{\\c} (\q{code}) and
112\i\c{\\cw} (\q{\i{weak code}}). You use them just like \c{\\e}, by
11f2edfa 113following them with some text in braces. For example, this...
114
115\c This sentence contains some \c{code} and some \cw{weak code}.
116
117... produces this:
118
119\quote{
120This sentence contains some \c{code} and some \cw{weak code}.
121}
122
123The distinction between code and weak code is mainly important when
124producing plain text output. Plain text output is typically viewed
125in a fixed-width font, so there is no need (and no way) to change
126font in order to make the order of punctuation marks clear. However,
127marking text as code is also \e{sometimes} done to provide a visual
128distinction between it and the text around it, so that the reader
129knows where the literal computer text starts and stops; and in plain
130text, this cannot be done by changing font, so there needs to be an
131alternative way.
132
e21ccf73 133So in the plain text output format, things marked as code (\c{\\c})
134will be surrounded by quote marks, so that it's obvious where they
135start and finish. Things marked as weak code (\c{\\cw}) will not
136look any different from normal text.
11f2edfa 137
138I recommend using weak code for any application where it is
139\e{obvious} that the text is literal computer input or output. For
140example, if the text is capitalised, that's usually good enough. If
141I talk about the Pentium's \cw{EAX} and \cw{EDX} registers, for
142example, you don't need quotes to notice that those are special; so
b7747050 143I would write that in Halibut as \cq{the Pentium's \\cw\{EAX\} and
144\\cw\{EDX\} registers}. But if I'm talking about the Unix command
11f2edfa 145\c{man}, which is an ordinary English word in its own right, a reader
146might be slightly confused if it appeared in the middle of a
b7747050 147sentence undecorated; so I would write that as \cq{the Unix command
148\\c\{man\}}.
11f2edfa 149
150In summary:
151
152\b \c{\\c} means \q{this text \e{must} be visually distinct from the
153text around it}. Halibut's various output formats will do this by
154changing the font if possible, or by using quotes if not.
155
156\b \c{\\cw} means \q{it would be nice to display this text in a
157fixed-width font if possible, but it's not essential}.
158
fc8e7adb 159In really extreme cases, you might want Halibut to use \i{quotation
160marks} even in output formats which can change font. In
161\k{input-date}, for example, I mention the special formatting
b7747050 162command \cq{\\.}. If that appeared at the end of a sentence
fc8e7adb 163\e{without} the quotes, then the two adjacent full stops would look
b7747050 164pretty strange even if they were obviously in different fonts.
165
166For this, Halibut supports the \i\c{\\cq} command, which is exactly
167equivalent to using \c{\\q} to provide quotes and then using
168\c{\\cw} inside the quotes. So in the paragraph above, for example,
169I wrote
170
171\c the special formatting command \cq{\\.}.
172
173and I could equivalently have written
fc8e7adb 174
175\c the special formatting command \q{\cw{\\.}}.
176
11f2edfa 177There is a separate mechanism for displaying computer code in an
178entire paragraph; see \k{input-codepara} for that one.
179
339cbe09 180\S{input-quotes} \c{\\q}: \ii{Quotation marks}
11f2edfa 181
182Halibut's various output formats don't all use the same conventions
183for displaying text in ordinary quotation marks (\q{like these}).
184Some output formats have access to proper matched quote characters,
185whereas others are restricted to using plain ASCII. Therefore, it is
186not ideal to use the ordinary ASCII double quote character in your
187document (although you can if you like).
188
339cbe09 189Halibut provides the formatting command \i\c{\\q} to indicate quoted
11f2edfa 190text. If you write
191
192\c Here is some \q{text in quotes}.
193
194then Halibut will print
195
196\quote{
197Here is some \q{text in quotes}.
198}
199
200and in every output format Halibut generates, it will choose the
d87cb8ae 201best quote characters available to it in that format. (The quote
202characters to use can be configured with the \c{\\cfg} command.)
11f2edfa 203
e34ba5c3 204You can still use the ordinary quote characters of your choice if
205you prefer; or you could even use the \c{\\u} command (see
206\k{input-unicode}) to generate \i{Unicode matched quotes} (single or
207double) in a way which will automatically fall back to the normal
208ASCII one if they aren't available. But I recommend using the
209built-in \c{\\q} command in most cases, because it's simple and does
210the best it can everywhere.
11f2edfa 211
ed5c261f 212If you're using the \c{\\c} or \c{\\cw} commands to display literal
213computer code, you will probably want to use literal \i{ASCII quote
214characters}, because it is likely to matter precisely which quote
215character you use. In fact, Halibut actually \e{disallows} the use
216of \c{\\q} within either of \c{\\c} and \c{\\cw}, since this
217simplifies some of the output formats.
11f2edfa 218
339cbe09 219\S{input-nonbreaking} \c{\\-} and \c{\\_}: \ii{Non-breaking hyphens}
220and \I{non-breaking spaces}spaces
11f2edfa 221
222If you use an ordinary hyphen in the middle of a word (such as
223\q{built-in}), Halibut's output formats will feel free to break a
339cbe09 224line after that hyphen when \i{wrapping paragraphs}. This is fine
225for a word like \q{built-in}, but if you were displaying some
226literal computer code such as the Emacs command
11f2edfa 227\c{M\-x\_psychoanalyze\-pinhead}, you might prefer to see the whole
228hyphenated word treated as an unbreakable block. In some cases, you
229might even want to prevent the \e{space} in that command from
230becoming a line break.
231
339cbe09 232For these purposes, Halibut provides the commands \i\c{\\-} and
233\i\c{\\_}, which generate a non-breaking hyphen and a non-breaking
11f2edfa 234space respectively. So the above Emacs command might be written as
235
236\c the Emacs command \c{M\-x\_psychoanalyze\-pinhead}
237
238Unfortunately, some of Halibut's output formats do not support
239non-breaking hyphens, and others don't support \e{breaking} hyphens!
240So Halibut cannot promise to honour these commands in all situations.
241All it can do is make a best effort.
242
339cbe09 243\S{input-date} \c{\\date}: Automatic \i{date} generation
11f2edfa 244
245Sometimes you might want your document to give an up-to-date
246indication of the date on which it was run through Halibut.
247
339cbe09 248Halibut supplies the \i\c{\\date} command to do this. In its
249simplest form, you simply say
11f2edfa 250
251\c This document was generated on \date.
252
253and Halibut generates something like
254
255\quote{
256This document was generated on \date.
257}
258
acbb8b72 259You can follow the \c{\\date} command directly with punctuation (as
260in this example, where it is immediately followed by a full stop),
261but if you try to follow it with an alphabetic or numeric character
262(such as writing \c{\\dateZ}) then Halibut will assume you are
263trying to invoke the name of a macro command you have defined
264yourself, and will complain if no such command exists. To get round
b7747050 265this you can use the special \cq{\\.} do-nothing command. See
acbb8b72 266\k{input-macro} for more about general Halibut command syntax and
b7747050 267\cq{\\.}.
acbb8b72 268
11f2edfa 269If you would prefer the date to be generated in a specific format,
270you can follow the \c{\\date} command with a format specification in
271braces. The format specification will be run through the standard C
339cbe09 272function \i\c{strftime}, so any format acceptable to that function
273is acceptable here as well. I won't document the format here,
274because the details vary from computer to computer (although there
275is a standard core which should be supported everywhere). You should
276look at your local system's manual for \c{strftime} for details.
11f2edfa 277
278Here's an example which generates the date in the international
339cbe09 279standard \i{ISO 8601} format:
11f2edfa 280
281\c This document was generated on \date{%Y-%m-%d %H:%M:%S}.
282
283And here's some sample output from that command:
284
285\quote{
286This document was generated on \date{%Y-%m-%d %H:%M:%S}.
287}
288
339cbe09 289\S{input-weblink} \c{\\W}: \i{WWW hyperlinks}
11f2edfa 290
339cbe09 291Since one of Halibut's output formats is \i{HTML}, it's obviously
292useful to be able to provide \I{linking to web sites}links to
293arbitrary \i{web sites} in a Halibut document.
11f2edfa 294
339cbe09 295This is done using the \i\c{\\W} command. \c{\\W} expects to be
11f2edfa 296followed by \e{two} sets of braces. In the first set of braces you
339cbe09 297put a \i{URL}; in the second set you put the text which should be a
298\i{hyperlink}. For example, you might write
11f2edfa 299
300\c Try searching on \W{http://www.google.com/}{Google}.
301
302and Halibut would generate
303
304\quote{
305Try searching on \W{http://www.google.com/}{Google}.
306}
307
308Note that hyperlinks, like the non-breaking commands discussed in
309\k{input-nonbreaking}, are \e{discretionary}: if an output format
310does not support them then they will just be left out completely. So
311unless you're \e{only} intending to use the HTML output format, you
312should avoid storing vital content in the URL part of a \c{\\W}
313command. The Google example above is reasonable (because most users
314are likely to be able to find Google for themselves even without a
315convenient hyperlink leading straight there), but if you really need
316to direct users to a specific web site, you will need to give the
317URL in actual displayed text (probably displayed as code as well).
318However, there's nothing to stop you making it a hyperlink \e{as
319well} for the convenience of HTML readers.
320
321The \c{\\W} command supports a piece of extra syntax to make this
322convenient for you. You can specify \c{\\c} or \c{\\cw} \e{between}
323the first and second pairs of braces. For example, you might write
324
e028d141 325\c Google is at \W{http://www.google.com/}\cw{www.google.com}.
11f2edfa 326
327and Halibut would produce
328
329\quote{
e028d141 330Google is at \W{http://www.google.com/}\cw{www.google.com}.
11f2edfa 331}
332
b80802ba 333If you want the link text to be an index term as well, you can also
334specify \c{\\i} or \c{\\ii}; this has to come before \c{\\c} or
335\c{\\cw} if both are present. (See \k{input-index} for more about
336indexing.)
337
339cbe09 338\S{input-unicode} \c{\\u}: Specifying arbitrary \i{Unicode}
339characters
11f2edfa 340
e34ba5c3 341Halibut has extensive support for Unicode and character set
342conversion. You can specify any (reasonably well known) \i{character
343set} for your input document, and Halibut will convert it all to
344Unicode as it reads it in. See \k{input-config} for more details of
345this.
11f2edfa 346
347If you need to specify a Unicode character in your input document
e34ba5c3 348which is not supported by the input character set you have chosen,
349you can use the \i\c{\\u} command to do this. \c{\\u} expects to be
350followed by a sequence of hex digits; so that \c{\\u0041}, for
351example, denotes the Unicode character \cw{0x0041}, which is the
352capital letter A.
11f2edfa 353
354If a Unicode character specified in this way is not supported in a
355particular \e{output} format, you probably don't just want it to be
356omitted. So you can put a pair of braces after the \c{\\u} command
339cbe09 357containing \i{fallback text}. For example, to specify an amount of
358money in euros, you might write this:
11f2edfa 359
16ea3abe 360\c This is likely to cost \u20AC{EUR\_}2500 at least.
11f2edfa 361
362Halibut will render that as a Euro sign \e{if available}, and
16ea3abe 363the text \q{EUR\_} if not. In the output format you're currently
11f2edfa 364reading in, the above input generates this:
365
366\quote{
16ea3abe 367This is likely to cost \u20AC{EUR\_}2500 at least.
11f2edfa 368}
369
370If you read it in other formats, you may see different results.
371
da090173 372\S{input-xref} \i\c{\\k} and \I{\\K-upper}\c{\\K}:
373\ii{Cross-references} to other sections
11f2edfa 374
339cbe09 375\K{intro-features} mentions that Halibut \I{section numbers}numbers
376the sections of your document automatically, and can generate
377cross-references to them on request. \c{\\k} and \c{\\K} are the
378commands used to generate those cross-references.
11f2edfa 379
380To use one of these commands, you simply follow it with a pair of
381braces containing the keyword for the section in question. For
382example, you might write something like
383
384\c \K{input-xref} expands on \k{intro-features}.
385
386and Halibut would generate something like
387
388\quote{
389\K{input-xref} expands on \k{intro-features}.
390}
391
339cbe09 392The \i{keywords} \c{input-xref} and \c{intro-features} are
393\i{section keywords} used in this manual itself. In your own
394document, you would have supplied a keyword for each one of your own
395sections, and you would provide your own keywords for the \c{\\k}
396command to work on.
11f2edfa 397
398The difference between \c{\\k} and \c{\\K} is simply that \c{\\K}
399starts the cross-reference text with a capital letter; so you would
400use \c{\\K} at the beginning of a sentence, and \c{\\k} everywhere
401else.
402
403In output formats which permit it, cross-references act as
339cbe09 404\i{hyperlinks}, so that clicking the mouse on a cross-reference
405takes you straight to the referenced section.
11f2edfa 406
407The \c{\\k} commands are also used for referring to entries in a
339cbe09 408\i{bibliography} (see \k{input-biblio} for more about
409bibliographies), and can also be used for referring to an element of
410a \i{numbered list} by its number (see \k{input-list-number} for
411more about numbered lists).
11f2edfa 412
413See \k{input-sections} for more about chapters and sections.
414
339cbe09 415\S{input-inline-comment} \i\c{\\#}: Inline comments
11f2edfa 416
339cbe09 417If you want to include \i{comments} in your Halibut input, to be seen
11f2edfa 418when reading it directly but not copied into the output text, then
419you can use \c{\\#} to do this. If you follow \c{\\#} with text in
420braces, that text will be ignored by Halibut.
421
422For example, you might write
423
fc8e7adb 424\c The typical behaviour of an antelope \#{do I mean
425\c gazelle?} is...
11f2edfa 426
427and Halibut will simply leave out the aside about gazelles, and will
428generate nothing but
429
430\quote{
fc8e7adb 431The typical behaviour of an antelope \#{do I mean
432gazelle?} is...
11f2edfa 433}
434
acbb8b72 435This command will respect nested braces, so you can use it to
436comment out sections of Halibut markup:
437
438\c This function is \#{very, \e{very}} important.
439
440In this example, the comment lasts until the final closing brace (so
441that the whole \q{very, \e{very}} section is commented out).
442
11f2edfa 443The \c{\\#} command can also be used to produce a whole-paragraph
444comment; see \k{input-commentpara} for details of that.
445
339cbe09 446\H{input-para} \ii{Paragraph-level commands}
11f2edfa 447
448This section describes Halibut commands which affect an entire
449paragraph, or sometimes even \e{more} than one paragraph, at a time.
450
339cbe09 451\S{input-codepara} \i\c{\\c}: Displaying whole \I{code
452paragraphs}paragraphs of \i{computer code}
11f2edfa 453
454\K{input-code} describes a mechanism for displaying computer code in
455the middle of a paragraph, a few words at a time.
456
457However, this is often not enough. Often, in a computer manual, you
339cbe09 458really want to show several lines of code in a \i{display
459paragraph}.
11f2edfa 460
461This is also done using the \c{\\c} command, in a slightly different
462way. Instead of using it in the middle of a paragraph followed by
463braces, you can use it at the start of each line of a paragraph. For
464example, you could write
465
466\c \c #include <stdio.h>
467\c \c
468\c \c int main(int argc, char **argv) {
469\c \c printf("hello, world\n");
470\c \c return 0;
471\c \c }
472
473and Halibut would generate
474
475\quote{
476
477\c #include <stdio.h>
478\c
479\c int main(int argc, char **argv) {
480\c printf("hello, world\n");
481\c return 0;
482\c }
483
484}
485
486Note that the above paragraph makes use of a backslash and a pair of
487braces, and does \e{not} need to escape them in the way described in
488\k{input-basics}. This is because code paragraphs formatted in this
489way are a special case; the intention is that you can just copy and
b7747050 490paste a lump of code out of your program, put \cq{\\c } at the
11f2edfa 491start of every line, and simply \e{not have to worry} about the
492details - you don't have to go through the whole block looking for
493characters to escape.
494
495Since a backslash inside a code paragraph generates a literal
496backslash, this means you cannot use any other Halibut formatting
497commands inside a code paragraph. In particular, if you want to
498emphasise a particular word in the paragraph, you can't do that
499using \c{\\e} (\k{input-emph}) in the normal way.
500
339cbe09 501Therefore, Halibut provides an alternative means of \i{emphasis in
502code paragraphs}. Each line beginning with \c{\\c} can optionally be
11f2edfa 503followed by a single line beginning with \c{\\e}, indicating the
504emphasis in that line. The emphasis line contains the letters \c{b}
505and \c{i} (for \q{bold} and \q{italic}, although some output formats
339cbe09 506might render \c{i} as underlining instead of italics), positioned to
507line up under the parts of the text that you want emphasised.
11f2edfa 508
339cbe09 509For example, if you wanted to do \i{syntax highlighting} on the
510above C code by highlighting the preprocessor command in italic and
511the keywords in bold, you might do it like this:
11f2edfa 512
513\c \c #include <stdio.h>
514\c \e iiiiiiiiiiiiiiiiii
515\c \c
516\c \c int main(int argc, char **argv) {
517\c \e bbb bbb bbbb
518\c \c printf("hello, world\n");
519\c \c return 0;
520\c \e bbbbbb
521\c \c }
522
523and Halibut would generate:
524
525\quote{
526
527\c #include <stdio.h>
528\e iiiiiiiiiiiiiiiiii
529\c
530\c int main(int argc, char **argv) {
531\e bbb bbb bbbb
532\c printf("hello, world\n");
533\c return 0;
534\e bbbbbb
535\c }
536
537}
538
539Note that not every \c{\\c} line has to be followed by a \c{\\e}
540line; they're optional.
541
542Also, note that highlighting within a code paragraph is
543\e{discretionary}. Not all of Halibut's output formats can support
544it (plain text, in particular, has no sensible way to do it). Unless
545you know you are using a restricted range of output formats, you
546should use highlighting in code paragraphs \e{only} as a visual aid,
547and not rely on it to convey any vital semantic content.
548
339cbe09 549\S{input-lists} \c{\\b}, \c{\\n}, \c{\\dt}, \c{\\dd}, \c{\\lcont}:
550\ii{Lists}
11f2edfa 551
552Halibut supports bulletted lists, numbered lists and description
553lists.
554
339cbe09 555\S2{input-list-bullet} \i\c{\\b}: \ii{Bulletted lists}
11f2edfa 556
557To create a bulletted list, you simply prefix each paragraph
558describing a bullet point with the command \c{\\b}. For example, this
559Halibut input:
560
561\c Here's a list:
562\c
563\c \b One.
564\c
565\c \b Two.
566\c
567\c \b Three.
568
569would produce this Halibut output:
570
571\quote{
572Here's a list:
573
574\b One.
575
576\b Two.
577
578\b Three.
579}
580
339cbe09 581\S2{input-list-number} \i\c{\\n}: \ii{Numbered lists}
11f2edfa 582
583Numbered lists are just as simple: instead of \c{\\b}, you use
584\c{\\n}, and Halibut takes care of getting the numbering right for
585you. For example:
586
587\c Here's a list:
588\c
589\c \n One.
590\c
591\c \n Two.
592\c
593\c \n Three.
594
595This produces the Halibut output:
596
597\quote{
598Here's a list:
599
600\n One.
601
602\n Two.
603
604\n Three.
605}
606
607The disadvantage of having Halibut sort out the list numbering for
608you is that if you need to refer to a list item by its number, you
fc8e7adb 609can't reliably know the number in advance (because if you later add
610another item at the start of the list, the numbers will all change).
611To get round this, Halibut allows an optional keyword in braces
612after the \c{\\n} command. This keyword can then be referenced using
613the \c{\\k} or \c{\\K} command (see \k{input-xref}) to provide the
614number of the list item. For example:
11f2edfa 615
616\c Here's a list:
617\c
618\c \n One.
619\c
620\c \n{this-one} Two.
621\c
622\c \n Three.
623\c
624\c \n Now go back to step \k{this-one}.
625
626This produces the following output:
627
628\quote{
629Here's a list:
630
631\n One.
632
633\n{this-one} Two.
634
635\n Three.
636
637\n Now go back to step \k{this-one}.
638}
639
acbb8b72 640The keyword you supply after \c{\\n} is allowed to contain escaped
641special characters (\c{\\\\}, \c{\\\{} and \c{\\\}}), but should not
642contain any other Halibut markup. It is intended to be a word or two
643of ordinary text. (This also applies to keywords used in other
644commands, such as \c{\\B} and \c{\\C}).
645
339cbe09 646\S2{input-list-description} \i\c{\\dt} and \i\c{\\dd}:
647\ii{Description lists}
11f2edfa 648
339cbe09 649To write a description list, you prefix alternate paragraphs with
650the \c{\\dt} (\q{described thing}) and \c{\\dd} (description)
651commands. For example:
11f2edfa 652
653\c \dt Pelican
654\c
655\c \dd This is a large bird with a big beak.
656\c
657\c \dt Panda
658\c
659\c \dd This isn't.
660
661This produces the following output:
662
663\quote{
664
665\dt Pelican
666
667\dd This is a large bird with a big beak.
668
669\dt Panda
670
671\dd This isn't.
672
673}
674
339cbe09 675\S2{input-list-continuation} \ii{Continuing list items} into further
11f2edfa 676paragraphs
677
678All three of the above list types assume that each list item is a
679single paragraph. For a short, snappy list in which each item is
680likely to be only one or two words, this is perfectly sufficient;
681but occasionally you will find you want to include several
339cbe09 682paragraphs in a single list item, or even to \I{nested lists}nest
683other types of paragraph (such as code paragraphs, or other lists)
684inside a list item.
11f2edfa 685
339cbe09 686To do this, you use the \i\c{\\lcont} command. This is a command
687which can span \e{multiple} paragraphs.
11f2edfa 688
689After the first paragraph of a list item, include the text
690\c{\\lcont\{}. This indicates that the subsequent paragraph(s) are a
691\e{continuation} of the list item that has just been seen. So you
692can include further paragraphs, and eventually include a closing
693brace \c{\}} to finish the list continuation. After that, you can
694either continue adding other items to the original list, or stop
695immediately and return to writing normal paragraphs of text.
696
697Here's a (long) example.
698
699\c Here's a list:
700\c
701\c \n One. This item is followed by a code paragraph:
702\c
703\c \lcont{
704\c
705\c \c code
706\c \c paragraph
707\c
708\c }
709\c
710\c \n Two. Now when I say \q{two}, I mean:
711\c
712\c \lcont{
713\c
714\c \n Two, part one.
715\c
716\c \n Two, part two.
717\c
718\c \n Two, part three.
719\c
720\c }
721\c
722\c \n Three.
723
724The output produced by this fragment is:
725
726\quote{
727
728Here's a list:
729
730\n One. This item is followed by a code paragraph:
731
732\lcont{
733
734\c code
735\c paragraph
736
737}
738
739\n Two. Now when I say \q{two}, I mean:
740
741\lcont{
742
743\n Two, part one.
744
745\n Two, part two.
746
747\n Two, part three.
748
749}
750
751\n Three.
752
753}
754
fc8e7adb 755This syntax might seem a little bit inconvenient, and perhaps
11f2edfa 756counter-intuitive: you might expect the enclosing braces to have to
757go around the \e{whole} list item, rather than everything except the
758first paragraph.
759
760\c{\\lcont} is a recent addition to the Halibut input language;
761previously, \e{all} lists were required to use no more than one
762paragraph per list item. So it's certainly true that this feature
763looks like an afterthought because it \e{is} an afterthought, and
764it's possible that if I'd been designing the language from scratch
765with multiple-paragraph list items in mind, I would have made it
766look different.
767
768However, the advantage of doing it this way is that no enclosing
769braces are required in the \e{common} case: simple lists with only
770one paragraph per item are really, really easy to write. So I'm not
771too unhappy with the way it turned out; it obeys the doctrine of
772making simple things simple, and difficult things possible.
773
774Note that \c{\\lcont} can only be used on \c{\\b}, \c{\\n} and
775\c{\\dd} paragraphs; it cannot be used on \c{\\dt}.
776
339cbe09 777\S{input-rule} \i\c{\\rule}: \ii{Horizontal rules}
11f2edfa 778
779The command \c{\\rule}, appearing on its own as a paragraph, will
780cause a horizontal rule to be drawn, like this:
781
782\c Some text.
783\c
784\c \rule
785\c
786\c Some more text.
787
788This produces the following output:
789
790\quote{
791
792Some text.
793
794\rule
795
796Some more text.
797
798}
799
339cbe09 800\S{input-quote} \i\c{\\quote}: \ii{Indenting multiple paragraphs} as a
801long \i{quotation}
11f2edfa 802
803Quoting verbatim text using a code paragraph (\k{input-codepara}) is
804not always sufficient for your quoting needs. Sometimes you need to
805quote some normally formatted text, possibly in multiple paragraphs.
339cbe09 806This is similar to HTML's \i\cw{<BLOCKQUOTE>} command.
11f2edfa 807
808To do this, you can use the \c{\\quote} command. Like \c{\\lcont},
809this is a command which expects to enclose at least one paragraph
810and possibly more. Simply write \c{\\quote\{} at the beginning of
811your quoted section, and \c{\}} at the end, and the paragraphs in
812between will be formatted to indicate that they are a quotation.
813
814(This very manual, in fact, uses this feature a lot: all of the
fc8e7adb 815examples of Halibut input followed by Halibut output have the output
816quoted using \c{\\quote}.)
11f2edfa 817
818Here's some example Halibut input:
819
820\c In \q{Through the Looking Glass}, Lewis Carroll wrote:
821\c
822\c \quote{
823\c
824\c \q{The question is,} said Alice, \q{whether you \e{can} make
825\c words mean so many different things.}
826\c
fc8e7adb 827\c \q{The question is,} said Humpty Dumpty, \q{who is to be
828\c master - that's all.}
11f2edfa 829\c
830\c }
831\c
832\c So now you know.
833
834The output generated by this is:
835
836\quote{
837
838In \q{Through the Looking Glass}, Lewis Carroll wrote:
839
840\quote{
841
842\q{The question is,} said Alice, \q{whether you \e{can} make
843words mean so many different things.}
844
fc8e7adb 845\q{The question is,} said Humpty Dumpty, \q{who is to be
846master - that's all.}
11f2edfa 847
848}
849
850So now you know.
851
852}
853
da090173 854\S{input-sections} \I{\\C-upper}\c{\\C}, \i\c{\\H}, \i\c{\\S},
855\i\c{\\A}, \I{\\U-upper}\c{\\U}: Chapter and \i{section headings}
11f2edfa 856
339cbe09 857\K{intro-features} mentions that Halibut \I{section
858numbering}numbers the sections of your document automatically, and
859can generate cross-references to them on request; \k{input-xref}
860describes the \c{\\k} and \c{\\K} commands used to generate the
861cross-references. This section describes the commands used to set up
862the sections in the first place.
11f2edfa 863
864A paragraph beginning with the \c{\\C} command defines a chapter
865heading. The \c{\\C} command expects to be followed by a pair of
866braces containing a keyword for the chapter; this keyword can then
867be used with the \c{\\k} and \c{\\K} commands to generate
868cross-references to the chapter. After the closing brace, the rest
869of the paragraph is used as the displayed chapter title. So the
870heading for the current chapter of this manual, for example, is
871written as
872
873\c \C{input} Halibut input format
874
875and this allows me to use the command \c{\\k\{input\}} to generate a
876cross-reference to that chapter somewhere else.
877
acbb8b72 878The \I{keyword syntax}keyword you supply after one of these commands
879is allowed to contain escaped special characters (\c{\\\\}, \c{\\\{}
880and \c{\\\}}), but should not contain any other Halibut markup. It
881is intended to be a word or two of ordinary text. (This also applies
882to keywords used in other commands, such as \c{\\B} and \c{\\n}).
883
11f2edfa 884The next level down from \c{\\C} is \c{\\H}, for \q{heading}. This
885is used in exactly the same way as \c{\\C}, but section headings
886defined with \c{\\H} are considered to be part of a containing
887chapter, and will be numbered with a pair of numbers. After \c{\\H}
888comes \c{\\S}, and if necessary you can then move on to \c{\\S2},
889\c{\\S3} and so on.
890
891For example, here's a sequence of heading commands. Normally these
892commands would be separated at least by blank lines (because each is
893a separate paragraph), and probably also by body text; but for the
894sake of brevity, both of those have been left out in this example.
895
896\c \C{foo} Using Foo
897\c \H{foo-intro} Introduction to Foo
898\c \H{foo-running} Running the Foo program
899\c \S{foo-inter} Running Foo interactively
900\c \S{foo-batch} Running Foo in batch mode
901\c \H{foo-trouble} Troubleshooting Foo
902\c \C{bar} Using Bar instead of Foo
903
904This would define two chapters with keywords \c{foo} and \c{bar},
905which would end up being called Chapter 1 and Chapter 2 (unless
906there were other chapters before them). The sections \c{foo-intro},
907\c{foo-running} and \c{foo-trouble} would be referred to as Section
9081.1, Section 1.2 and Section 1.3 respectively; the subsections
909\c{foo-inter} and \c{foo-batch} would be Section 1.2.1 and Section
339cbe09 9101.2.2. If there had been a \i\c{\\S2} command within one of those,
911it would have been something like Section 1.2.1.1.
11f2edfa 912
913If you don't like the switch from \c{\\H} to \c{\\S}, you can use
914\c{\\S1} as a synonym for \c{\\S} and \c{\\S0} as a synonym for
915\c{\\H}. Chapters are still designated with \c{\\C}, because they
916need to be distinguished from other types of chapter such as
917appendices. (Personally, I like the \c{\\C},\c{\\H},\c{\\S} notation
918because it encourages me to think of my document as a hard disk :-)
919
339cbe09 920You can define an \i{appendix} by using \c{\\A} in place of \c{\\C}.
11f2edfa 921This is no different from a chapter except that it's given a letter
922instead of a number, and cross-references to it will say \q{Appendix
923A} instead of \q{Chapter 9}. Subsections of an appendix will be
924numbered \q{A.1}, \q{A.2}, \q{A.2.1} and so on.
925
339cbe09 926\I{renaming sections}If you want a particular section to be referred
927to as something other than a \q{chapter}, \q{section} or
928\q{appendix}, you can include a second pair of braces after the
929keyword. For example, if you're \i{writing a FAQ} chapter and you
930want cross-references between questions to refer to \q{question
9311.2.3} instead of \q{section 1.2.3}, you can write each section
932heading as
11f2edfa 933
934\c \S{question-about-fish}{Question} What about fish?
935
936(The word \q{Question} should be given with an initial capital
937letter. Halibut will lower-case it when you refer to it using
938\c{\\k}, and will leave it alone if you use \c{\\K}.)
939
940This technique allows you to change the designation of
941\e{particular} sections. To make an overall change in what \e{every}
942section is called, see \k{input-config}.
943
339cbe09 944Finally, the \c{\\U} command defines an \I{unnumbered
945chapter}\e{unnumbered} chapter. These sometimes occur in books, for
946specialist purposes such as \q{Bibliography} or
947\q{Acknowledgements}. \c{\\U} does not expect a keyword argument,
948because there is no sensible way to generate an automatic
949cross-reference to such a chapter anyway.
11f2edfa 950
8902e0ed 951\S{input-blurb} \c{\\copyright}, \c{\\title}, \c{\\versionid}:
339cbe09 952Miscellaneous \i{blurb commands}
11f2edfa 953
339cbe09 954These three commands define a variety of \i{special paragraph
955types}. They are all used in the same way: you put the command at
956the start of a paragraph, and then just follow it with normal text,
957like this:
11f2edfa 958
959\c \title My First Manual
960
8902e0ed 961The three special paragraph types are:
11f2edfa 962
339cbe09 963\dt \i\cw{\\title}
11f2edfa 964
965\dd This defines the overall title of the entire document. This
966title is treated specially in some output formats (for example, it's
967used in a \cw{<title>} tag in the HTML output), so it needs a
968special paragraph type to point it out.
969
339cbe09 970\dt \i\cw{\\copyright}
11f2edfa 971
972\dd This command indicates that the paragraph attached to it
339cbe09 973contains a \i{copyright statement} for the document. This text is
9057a0a8 974displayed inline where it appears, exactly like a normal paragraph;
975but in some output formats it is given additional special treatment.
976For example, Windows Help files have a standard slot in which to
977store a copyright notice, so that other software can display it
978prominently.
11f2edfa 979
339cbe09 980\dt \i\cw{\\versionid}
11f2edfa 981
982\dd This command indicates that the paragraph contains a version
983identifier, such as those produced by CVS (of the form \c{$\#{hope this
984defuses CVS}Id: thingy.but,v 1.6 2004/01/01 16:47:48 simon Exp $}).
985This text will be tucked away somewhere unobtrusive, so that anyone
986wanting to (for example) report errors to the document's author can
339cbe09 987pick out the \i{version IDs} and send them as part of the report, so
11f2edfa 988that the author can tell at a glance which revision of the document
989is being discussed.
990
339cbe09 991\S{input-commentpara} \i\c{\\#}: Whole-paragraph \i{comments}
11f2edfa 992
993\K{input-inline-comment} describes the use of the \c{\\#} command to
994put a short comment in the middle of a paragraph.
995
996If you need to use a \e{long} comment, Halibut also allows you to
997use \c{\\#} without braces, to indicate that an entire paragraph is
998a comment, like this:
999
1000\c Here's a (fairly short) paragraph which will be displayed.
1001\c
1002\c \# Here's a comment paragraph which will not be displayed, no
fc8e7adb 1003\c matter how long it goes on. All I needed to indicate this was
1004\c the single \# at the start of the paragraph; I don't need one
1005\c on every line or anything like that.
11f2edfa 1006\c
1007\c Here's another displayed paragraph.
1008
1009When run through Halibut, this produces the following output:
1010
1011\quote{
1012
1013Here's a (fairly short) paragraph which will be displayed.
1014
1015\# Here's a comment paragraph which will not be displayed, no
fc8e7adb 1016matter how long it goes on. All I needed to indicate this was
1017the single \# at the start of the paragraph; I don't need one
1018on every line or anything like that.
11f2edfa 1019
1020Here's another displayed paragraph.
1021
1022}
1023
339cbe09 1024\H{input-biblio} Creating a \i{bibliography}
11f2edfa 1025
1026If you need your document to refer to other documents (research
1027papers, books, websites, whatever), you might find a bibliography
1028feature useful.
1029
da090173 1030You can define a bibliography entry using the \I{\\B-upper}\c{\\B}
1031command. This looks very like the \c{\\C} command and friends: it
1032expects a keyword in braces, followed by some text describing the
1033document being referred to. For example:
11f2edfa 1034
1035\c \B{freds-book} \q{The Taming Of The Mongoose}, by Fred Bloggs.
1036\c Published by Paperjam & Notoner, 1993.
1037
1038If this bibliography entry appears in the finished document, it will
1039look something like this:
1040
1041\quote{
1042
1043\B{freds-book} \q{The Taming Of The Mongoose}, by Fred Bloggs.
1044Published by Paperjam & Notoner, 1993.
1045
1046}
1047
1048I say \q{if} above because not all bibliography entries defined
1049using the \c{\\B} command will necessarily appear in the finished
339cbe09 1050document. They only appear if they are \I{citation}referred to by a
1051\i\c{\\k} command (see \k{input-xref}). This allows you to (for
1052example) maintain a single Halibut source file with a centralised
1053database of \e{all} the references you have ever needed in any of
1054your writings, include that file in every document you feed to
1055Halibut, and have it only produce the bibliography entries you
1056actually need for each particular document. (In fact, you might even
1057want this centralised source file to be created automatically by,
1058say, a Perl script from BibTeX input, so that you can share the same
1059bibliography with users of other formatting software.)
11f2edfa 1060
1061If you really want a bibliography entry to appear in the document
1062even though no text explicitly refers to it, you can do that using
339cbe09 1063the \i\c{\\nocite} command:
11f2edfa 1064
1065\c \nocite{freds-book}
1066
1067Normally, each bibliography entry will be referred to (in citations
1068and in the bibliography itself) by a simple reference number, such
1069as \k{freds-book}. If you would rather use an alternative reference
339cbe09 1070notation, such as [Fred1993], you can use the \i\c{\\BR}
11f2edfa 1071(\q{Bibliography Rewrite}) command to specify your own reference
1072format for a particular book:
1073
1074\c \BR{freds-book} [Fred1993]
1075
acbb8b72 1076The keyword you supply after \c{\\B} is allowed to contain escaped
1077special characters (\c{\\\\}, \c{\\\{} and \c{\\\}}), but should not
1078contain any other Halibut markup. It is intended to be a word or two
1079of ordinary text. (This also applies to keywords used in other
1080commands, such as \c{\\n} and \c{\\C}).
1081
339cbe09 1082\H{input-index} Creating an \i{index}
11f2edfa 1083
1084Halibut contains a comprehensive indexing mechanism, which attempts
1085to be reasonably easy to use in the common case in spite of its
1086power.
1087
1088\S{input-index-simple} Simple indexing
1089
1090In normal usage, you should be able to add index terms to your
339cbe09 1091document simply by using the \i\c{\\i} command to wrap one or two
11f2edfa 1092words at a time. For example, if you write
1093
1094\c The \i{hippopotamus} is a particularly large animal.
1095
1096then the index will contain an entry under \q{hippopotamus},
1097pointing to that sentence (or as close to that sentence as the
1098output format sensibly permits).
1099
1100You can wrap more than one word in \c{\\i} as well:
1101
1102\c We recommend using a \i{torque wrench} for this job.
1103
1104\S{input-index-special} Special cases of indexing
1105
1106If you need to index a computer-related term, you can use the
339cbe09 1107special case \i\c{\\i\\c} (or \i\c{\\i\\cw} if you prefer):
11f2edfa 1108
1109\c The \i\c{grep} command is what you want here.
1110
1111This will cause the word \q{grep} to appear in code style, as if the
1112\c{\\i} were not present and the input just said \c{\\c\{grep\}};
1113the word will also appear in code style in the actual index.
1114
1115If you want to simultaneously index and emphasise a word, there's
339cbe09 1116another special case \i\c{\\i\\e}:
11f2edfa 1117
1118\c This is what we call a \i\e{paper jam}.
1119
1120This will cause the words \q{paper jam} to be emphasised in the
1121document, but (unlike the behaviour of \c{\\i\\c}) they will \e{not}
1122be emphasised in the index. This different behaviour is based on an
1123expectation that most people indexing a word of computer code will
1124still want it to look like code in the index, whereas most people
1125indexing an emphasised word will \e{not} want it emphasised in the
1126index.
1127
8856f150 1128(In fact, \e{no} emphasis in the text inside \c{\\i} will be
1129preserved in the index. If you really want a term in the index to
1130appear emphasised, you must say so explicitly using \c{\\IM}; see
1131\k{input-index-rewrite}.)
1132
11f2edfa 1133Sometimes you might want to index a term which is not explicitly
1134mentioned, but which is highly relevant to the text and you think
1135that somebody looking up that term in the index might find it useful
da090173 1136to be directed here. To do this you can use the \I{\\I-upper}\c{\\I}
1137command, to create an \i{\e{invisible} index tag}:
11f2edfa 1138
1139\c If your printer runs out of toner, \I{replacing toner
1140\c cartridge}here is what to do:
1141
1142This input will produce only the output \q{If your printer runs out
1143of toner, here is what to do}; but an index entry will show up under
1144\q{replacing toner cartridge}, so that if a user thinks the obvious
1145place to start in the index is under R for \q{replacing}, they will
1146find their way here with a minimum of fuss.
1147
1148(It's worth noting that there is no functional difference between
1149\c{\\i\{foo\}} and \c{\\I\{foo\}foo}. The simple \c{\\i} case is
1150only a shorthand for the latter.)
1151
1152Finally, if you want to index a word at the start of a sentence, you
1153might very well not want it to show up with a capital letter in the
339cbe09 1154index. For this, Halibut provides the \i\c{\\ii} command, for
1155\q{index (case-)insensitively}. You use it like this:
11f2edfa 1156
1157\c \ii{Lions} are at the top of the food chain in this area.
1158
1159This is equivalent to \c{\\I\{lions\}Lions}; in other words, the
1160text will say \q{Lions}, but it will show up in the index as
1161\q{lions}. The text inside \c{\\ii} is converted entirely into lower
1162case before being added to the index data.
1163
339cbe09 1164\S{input-index-rewrite} \ii{Fine-tuning the index}
11f2edfa 1165
1166Halibut's index mechanism as described so far still has a few
1167problems left:
1168
1169\b In a reasonably large index, it's often difficult to predict
339cbe09 1170\I{replicating index terms}which of several words a user will think
1171of first when trying to look something up. For example, if they want
1172to know how to replace a toner cartridge, they might look up
1173\q{replacing} or they might look up \q{toner cartridge}. You
1174probably don't really want to have to try to figure out which of
1175those is more likely; instead, what you'd like is to be able to
1176effortlessly index the same set of document locations under \e{both}
1177terms.
11f2edfa 1178
1179\b Also, you may find you've indexed the same concept under multiple
339cbe09 1180different \I{merging index terms}index terms; for example, there
1181might be several instances of \c{\\i\{frog\}} and several of
1182\c{\\i\{frogs\}}, so that you'd end up with two separate index
1183entries for what really ought to be the same concept.
11f2edfa 1184
b7747050 1185\b You might well not want the word \cq{grep} to appear in the
11f2edfa 1186index without explanation; you might prefer it to say something more
339cbe09 1187\I{rewriting index terms}verbose such as \q{\cw{grep} command}, so
1188that a user encountering it in the index has some idea of what it is
1189\e{without} having to follow up the reference. However, you
1190certainly don't want to have to write \c{\\I\{\\cw\{grep\}
1191command\}\\c\{grep\}} every time you want to add an index term for
1192this! You wanted to write \c{\\i\\c\{grep\}} as shown in the
1193previous section, and tidy it all up afterwards.
1194
1195All of these problems can be cleaned up by the \i\c{\\IM} (for
11f2edfa 1196\q{Index Modification}) command. \c{\\IM} expects to be followed by
1197one or more pairs of braces containing index terms as seen in the
1198document, and then a piece of text (not in braces) describing how it
1199should be shown in the index.
1200
1201So to rewrite the \c{grep} example above, you might do this:
1202
1203\c \IM{grep} \cw{grep} command
1204
1205This will arrange that the set of places in the document where you
b7747050 1206asked Halibut to index \cq{grep} will be listed under
1207\q{\cw{grep} command} rather than just under \cq{grep}.
11f2edfa 1208
1209You can specify more than one index term in a \c{\\IM} command; so
1210to merge the index terms \q{frog} and \q{frogs} into a single term,
1211you might do this:
1212
1213\c \IM{frog}{frogs} frog
1214
1215This will arrange that the single index entry \q{frog} will list
1216\e{all} the places in the document where you asked Halibut to index
1217either \q{frog} or \q{frogs}.
1218
1219You can use multiple \c{\\IM} commands to replicate the same set of
1220document locations in more than one index entry. For example:
1221
1222\c \IM{replacing toner cartridge} replacing toner cartridge
1223\c \IM{replacing toner cartridge} toner cartridge, replacing
1224
1225This will arrange that every place in the document where you have
1226indexed \q{replacing toner cartridge} will be listed both there
1227\e{and} under \q{toner cartridge, replacing}, so that no matter
1228whether the user looks under R or under T they will stil find their
1229way to the same parts of the document.
1230
1231In this example, note that although the first \c{\\IM} command
1232\e{looks} as if it's a tautology, it is still necessary, because
1233otherwise those document locations will \e{only} be indexed under
1234\q{toner cartridge, replacing}. If you have \e{no} explicit \c{\\IM}
1235commands for a particular index term, then Halibut will assume a
1236default one (typically \c{\\IM\{foo\}\_foo}, although it might be
1237\c{\\IM\{foo\}\_\\c\{foo\}} if you originally indexed using
1238\c{\\i\\c}); but as soon as you specify an explicit \c{\\IM},
1239Halibut discards its default implicit one, and you must then specify
1240that one explicitly as well if you wanted to keep it.
1241
da090173 1242\S{input-index-case} Indexing terms that differ only in case
1243
1244The \e{tags} you use to define an index term (that is, the text in
1245the braces after \c{\\i}, \c{\\I} and \c{\\IM}) are treated
1246case-insensitively by Halibut. So if, as in this manual itself, you
1247need two index terms that differ only in case, doing this will not
1248work:
1249
1250\c The \i\c{\\c} command defines computer code.
1251\c
1252\c The \i\c{\\C} command defines a chapter.
1253
1254Halibut will treat these terms as the same, and will fold the two
1255sets of references into one combined list (although it will warn you
1256that it is doing this). The idea is to ensure that people who forget
1257to use \c{\\ii} find out about it rather than Halibut silently
1258generating a bad index; checking an index for errors is very hard
1259work, so Halibut tries to avoid errors in the first place as much as
1260it can.
1261
1262If you do come across this situation, you will need to define two
1263distinguishable index terms. What I did in this manual was something
1264like this:
1265
1266\c The \i\c{\\c} command defines computer code.
1267\c
1268\c The \I{\\C-upper}\c{\\C} command defines a chapter.
1269\c
1270\c \IM{\\C-upper} \c{\\C}
1271
1272The effect of this will be two separate index entries, one reading
1273\c{\\c} and the other reading \c{\\C}, pointing to the right places.
1274
339cbe09 1275\H{input-config} \ii{Configuring} Halibut
11f2edfa 1276
339cbe09 1277Halibut uses the \i\c{\\cfg} command to allow you to configure various
11f2edfa 1278aspects of its functionality.
1279
1280The \c{\\cfg} command expects to be followed by at least one pair of
1281braces, and usually more after that. The first pair of braces
1282contains a keyword indicating what aspect of Halibut you want to
1283configure, and the meaning of the one(s) after that depends on the
1284first keyword.
1285
1286The current list of configuration keywords in the main Halibut code
1287is quite small. Here it is in full:
1288
339cbe09 1289\dt \I\cw{\\cfg\{chapter\}}\cw{\\cfg\{chapter\}\{}\e{new chapter name}\cw{\}}
11f2edfa 1290
1291\dd This tells Halibut that you don't want to call a chapter a
339cbe09 1292\I{renaming sections}\I{configuring heading display}chapter any
1293more. For example, if you give the command
11f2edfa 1294\cw{\\cfg\{chapter\}\{Book\}}, then any chapter defined with the
1295\c{\\C} command will be labelled \q{Book} rather than \q{Chapter},
1296both in the section headings and in cross-references. This is
1297probably most useful if your document is not written in English.
1298
339cbe09 1299\lcont{
1300
1301Your replacement name should be given with a capital letter. Halibut
1302will leave it alone if it appears at the start of a sentence (in a
1303chapter title, or when \c{\\K} is used), and will lower-case it
1304otherwise (when \c{\\k} is used).
1305
1306}
1307
1308\dt \I\cw{\\cfg\{section\}}\cw{\\cfg\{section\}\{}\e{new section name}\cw{\}}
11f2edfa 1309
1310\dd Exactly like \c{chapter}, but changes the name given to
1311subsections of a chapter.
1312
339cbe09 1313\dt \I\cw{\\cfg\{appendix\}}\cw{\\cfg\{appendix\}\{}\e{new appendix name}\cw{\}}
11f2edfa 1314
339cbe09 1315\dd Exactly like \c{chapter}, but changes the name given to
11f2edfa 1316appendices.
1317
e34ba5c3 1318\dt \I\cw{\\cfg\{input-charset\}}\cw{\\cfg\{input-charset\}\{}\e{character set name}\cw{\}}
1319
1320\dd This tells Halibut what \i{character set} you are writing your
1321input file in. By default, it is assumed to be US-ASCII (meaning
1322\e{only} plain \i{ASCII}, with no accented characters at all).
1323
1324\lcont{
1325
1326You can specify any well-known name for any supported character set.
1327For example, \c{iso-8859-1}, \c{iso8859-1} and \c{iso_8859-1} are
1328all recognised, \c{GB2312} and \c{EUC-CN} both work, and so on.
1329
1330This directive takes effect immediately after the \c{\\cfg} command.
1331All text after that in the file is expected to be in the new
1332character set. You can even change character set several times
1333within a file if you really want to.
1334
1335When Halibut reads the input file, everything you type will be
1336converted into \i{Unicode} from the character set you specify here,
1337will be processed as Unicode by Halibut internally, and will be
1338written to the various output formats in whatever character sets
1339they deem appropriate.
1340
1341}
1342
6069815a 1343\dt \I\cw{\\cfg\{quotes\}}\cw{\\cfg\{quotes\}\{}\e{open-quote}\cw{\}\{}\e{close-quote}\cw{\}}[\cw{\{}\e{open-quote}\cw{\}\{}\e{close-quote}...\cw{\}}]
1344
1345\dd This specifies the quote characters which should be used. You
1346should separately specify the open and close quote marks; each
1347quote mark can be one character (\cw{\\cfg\{quotes\}\{`\}\{'\}}), or
1348more than one (\cw{\\cfg\{quotes\}\{<<\}\{>>\}}).
1349
1350\lcont{
1351
1352\cw{\\cfg\{quotes\}} can be overridden by configuration directives for
1353each individual backend (see \k{output}); it is a convenient way of
1354setting quote characters for all backends at once.
1355
1356All backends use these characters in response to the \c{\\q} command
1357(see \k{input-quotes}). Some (such as the text backend) use them for
1358other purposes too.
1359
1360You can specify multiple fallback options in this command (a pair of
1361open and close quotes, each in their own braces, then another pair,
1362then another if you like), and Halibut will choose the first pair
1363which the output character set supports (Halibut will always use a
1364matching pair). (This is to allow you to configure quote characters
1365once, generate output in several different character sets, and have
1366Halibut constantly adapt to make the best use of the current
1367encoding.) For example, you might write
1368
1369\c \cfg{quotes}{\u201c}{\u201d}{"}{"}
1370
1371and Halibut would use the Unicode matched double quote characters if
1372possible, and fall back to ASCII double quotes otherwise. If the
1373output character set were to contain U+201C but not U+201D, then
1374Halibut would fall back to using the ASCII double quote character as
1375\e{both} open and close quotes. (No known character set is that
1376silly; I mention it only as an example.)
1377
d87cb8ae 1378\cw{\\cfg\{quotes\}} (and the backend-specific versions) apply to the
1379\e{entire} output; it's not possible to change quote characters
1380partway through the output.
1381
6069815a 1382}
1383
11f2edfa 1384In addition to these configuration commands, there are also
1385configuration commands provided by each individual output format.
1386These configuration commands are discussed along with each output
16ea3abe 1387format, in \k{output}.
11f2edfa 1388
339cbe09 1389The \i{default settings} for the above options are:
1390
1391\c \cfg{chapter}{Chapter}
1392\c \cfg{section}{Section}
1393\c \cfg{appendix}{Appendix}
60f49347 1394\c \cfg{input-charset}{ASCII}
339cbe09 1395
6069815a 1396(The default settings for \cw{\\cfg\{quotes\}} are backend-specific;
1397see \k{output}.)
1398
339cbe09 1399\H{input-macro} Defining \i{macros}
11f2edfa 1400
1401If there's a complicated piece of Halibut source which you think
1402you're going to use a lot, you can define your own Halibut command
1403to produce that piece of source.
1404
1405In \k{input-unicode}, there is a sample piece of code which prints a
1406Euro sign, or replaces it with \q{EUR} if the Euro sign is not
1407available:
1408
16ea3abe 1409\c This is likely to cost \u20AC{EUR\_}2500 at least.
11f2edfa 1410
1411If your document quotes a \e{lot} of prices in Euros, you might not
1412want to spend all your time typing that out. So you could define a
339cbe09 1413macro, using the \i\c{\\define} command:
11f2edfa 1414
16ea3abe 1415\c \define{eur} \u20AC{EUR\_}
11f2edfa 1416
acbb8b72 1417Your macro names may include Roman alphabetic characters
1418(\c{a}-\c{z}, \c{A}-\c{Z}) and ordinary Arabic numerals
1419(\c{0}-\c{9}), but nothing else. (This is general \I{command
1420syntax}syntax for all of Halibut's commands, except for a few
1421special ones such as \c{\\_} and \c{\\-} which consist of a single
1422punctuation character only.)
1423
672e4626 1424Then you can just write ...
11f2edfa 1425
1426\c This is likely to cost \eur 2500 at least.
1427
672e4626 1428... except that that's not terribly good, because you end up with a
acbb8b72 1429space between the Euro sign and the number. (If you had written
1430\c{\\eur2500}, Halibut would have tried to interpret it as a macro
1431command called \c{eur2500}, which you didn't define.) In this case,
1432it's helpful to use the special \i\c{\\.} command, which is defined
1433to \I{NOP}\I{doing nothing}do nothing at all! But it acts as a
339cbe09 1434separator between your macro and the next character:
672e4626 1435
1436\c This is likely to cost \eur\.2500 at least.
1437
1438This way, you will see no space between the Euro sign and the number
1439(although, of course, there will be space between \q{EUR} and the
1440number if the Euro sign is not available, because the macro
1441definition specifically asked for it).