File: basics.ui

package info (click to toggle)
udo 6.4.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,680 kB
  • sloc: ansic: 42,702; makefile: 81; cpp: 19
file content (143 lines) | stat: -rw-r--r-- 4,978 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
############################################################
# @(#) basics.ui, Dirk Hagedorn, 1996/04/16
############################################################

!subnode Basics

!subsubnode Let's talk about text, Baby!

!index Text file
!index Linefeed
!index Carriage return

UDO expects a text file that you can edit with every ASCII editor. You
should use only printable characters. That means you shouldn't use any
characters below ""space"" except ASCII~9 (tab), ASCII~10 (line feed) and
ASCII~13 (carriage return). A line of a source file shouldn't contain more
than 512 characters.

UDO layouts the destination file itself. That means that it fills in spaces
between words and lines between paragraphs:

!begin_description

!index word
!item [Words] are characters that are divided by one or more blank or tab.
UDO prints words divided by one blank.

!index paragraph
!item [Paragraphs] consist of words. Paragraphs are divided by one or more
empty line(s) or UDO commands. UDO divides paragraphs by one empty line when
printing the destination file.

!end_description

!index Character set

You can compose the source file using different charsets. UDO supports the
following character sets:

!begin_itemize !short
!item	Atari ST ((!idx [!/code_tos]))
!item	Apple Macintosh ((!idx [!/code_mac]))
!item	HP Roman 8 ((!idx [!/code_hp8]))
!item	IBM PC ((!idx [!/code_dos]))
!item	ISO Latin 1, Windows ANSI ((!idx [!/code_iso]))
!end_itemize

When UDO starts the conversion it excepts the character set that is used on
the current operating system. If you want to convert source files that use
characters from a different operating system you have to tell it to UDO by
using the upper commands. Additional information can be found in the chapter
""Special characters"".

#-----------------------------------------------------------

!subsubnode Commands, switches and placeholders

!begin_xlist [Placeholders:]
!index Command
!item [Commands:]
An UDO command begins with a single ""!"" at the beginning of a line, it may be
indented by spaces or tabs. A command tells UDO to do something where you
used it e.g. to output the table of contents with
(!I)!/tableofcontents(!i).

!index Swicth
!item	[Switches:]
An UDO switch begins with a single ""!"" at the beginning of a line, it may be
indented by spaces or tabs. A switch tells UDO how to handle some commands
e.g. (!I)!/language english(!i) that switches the language of the destination file to
English so that UDO will print ""Appendix"" instead of ""Anhang"".

!index Placeholder
!item [Placeholders:]
An UDO placeholder begins with a ""(!"" and ends with a single "")"". A
placeholder is replaced by certain characters e.g. ''(!/B)'' by ''{\bf'' for
(!LaTeX). You can use placeholders wherever you want.

!end_xlist

#-----------------------------------------------------------
!subsubnode Comments

A source file can contain comments. UDO ignores a line if the first
character of a line is a ''#''. This character mustn't be indented
by spaces or tabs!

Inside a verbatim environment or raw environment you cannot use comments
because UDO prints every line of such an environment.

#-----------------------------------------------------------

!subsubnode Preamble and main part

!index Preamble
!index Main Part

Each source file has to contain a preamble and a main part.

!index !/begin_document

In the preamble you define general information about the source file like
information for the title page or the switches that tell UDO how to convert
the source file. The preamble ends with the command
(!I)!/begin_document(!i).

!index !/end_document

The main part contains the text structured into chapters, sections or
subsections. The main part ends with the command (!I)!/end_document(!i).

#-----------------------------------------------------------

!subsubnode Environments

An environment is a part of a source file that has to be converted in a
special way. Environments will be started with (!I)!/begin_(!i) and finished
with (!I)!/end_(!i). The commands have to be the first words of a line. They
may be indented by spaces or tabs.

UDO offers you a large range of environments that will help you to layout
your text and to insert special commands:

!begin_xlist [description environment:] !short

!item	[appendix environment:]		appendix
!item	[center environment:]		centred text
!item	[description environment:]	descriptions
!item	[document environment:]		documentation contents
!item	[enumerate environment:]	enumerations
!item	[flushleft environment:]	left justified text
!item	[flushright environment:]	right justified text
!item	[itemize environment:]		itemizations
!item	[quote environment:]		indented text
!item	[raw environment:]			special commands for the destination format
!item	[table environment:]		tables
!item	[verbatim environment:]		preformatted text
!item	[xlist environment:]		lists

!end_xlist

How the text of an environment is formatted you can find in the according
sections.