]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/writing-texinfo.txt
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / user / writing-texinfo.txt
1 DOCUMENTATION FORMATTING
2 ------------------------
3
4 The language is called texinfo; you can see its manual here:
5 http://www.gnu.org/software/texinfo/manual/texinfo/
6
7 However, you don't need to read those docs.  The most important
8 thing to notice is that text is text.  If you see a mistake in the
9 text, you can fix it.  If you want to change the order of
10 something, you can cut-and-paste that stuff into a new location.
11
12
13 %%%%% SECTIONING COMMANDS
14
15 Most of the manual operates at the
16         @node Foo
17         @subsubsection Foo
18 level.  Sections are created with
19         @node Foo
20         @subsection Foo
21 commands.
22
23 * Please leave two blank lines above a @node; this makes it easier
24   to find sections in texinfo.
25
26 * sectioning commands (@node and @section) must not appear inside
27   an @ignore.  Separate those commands with a space, ie @n ode.
28
29
30
31 %%%%% LILYPOND FORMATTING
32
33 * Use two spaces for indentation in lilypond examples.  (no tabs)
34
35 * All text strings should be prefaced with #.  LilyPond does not
36   strictly require this, but it is helpful to get users accustomed
37   to this scheme construct.  ie
38     \set Staff.instrumentName = #"cello"
39
40 * All engravers should have double-quotes around them:
41     \consists "Spans_arpeggio_engraver"
42   Again, LilyPond does not strictly require this, but it is a
43   useful standard to follow.
44
45 * Examples should end with a complete bar if possible.
46
47 * If possible, only write one bar per line.  The notes on each
48   line should be an independent line -- tweaks should occur on
49   their own line if possible.
50   Bad:
51     \override textscript #'padding = #3 c1^"hi"
52   Good:
53     \override textscript #'padding = #3
54     c1^"hi"
55
56 * LilyPond input should be produced via
57     @lilypond[verbatim,quote,ragged-right]
58   with `fragment' and `relative=2' optional.
59
60   Examples about page layout may alter the quote/ragged-right
61   options.  Omitting `verbatim' is not allowed except for special
62   circumstances.
63
64 * Inspirational headwords are produced with
65   @lilypondfile[quote,ragged-right,line-width=16\cm,staffsize=16]
66   {pitches-headword.ly}
67
68 * LSR snippets are linked with
69   @lilypondfile[verbatim,lilyquote,ragged-right,texidoc]
70   {filename.ly}
71
72 * Avoid long stretches of input code.  Noone is going to read them
73   in print.  Please create a smaller example.  (the smaller
74   example does not need to be minimal, however)
75
76 * Specify durations for at least the first note of every bar.
77
78 * If possible, end with a complete bar.
79
80 * Comments should go on their own line, and be placed before the
81   line(s) to which they refer.
82
83 * Add extra spaces around { } marks; ie
84   not:          \chordmode {c e g}
85   but instead:  \chordmode { c e g }
86
87 * If you only have one bar per line, omit bar checks.  If you
88   put more than one bar per line (not recommended), then include
89   bar checks.
90
91 * If you want to work on an example outside of the manual (for
92   easier/faster processing), use this header:
93
94 \paper {
95   #(define dump-extents #t)
96   indent = 0\mm
97   line-width = 160\mm - 2.0 * 0.4\in
98   ragged-right = ##t
99   force-assignment = #""
100   line-width = #(- line-width (* mm  3.000000))
101 }
102
103 \layout {
104 }
105
106   You may not change any of these values.  If you are making an
107   example demonstrating special \paper{} values, contact the
108   Documentation Editor.
109
110
111 %%%%% TEXT FORMATTING
112
113 * Lines should be less than 72 characters long.  (I personally
114   recommend writing with 66-char lines, but don't bother modifying
115   existing material.)
116
117 * Do not use tabs.
118
119 * Do not use spaces at the beginning of a line (except in @example
120   or @verbatim environments), and do not use more than a single
121   space between words.  `makeinfo' copies the input lines verbatim
122   without removing those spaces.
123
124 * Use two spaces after a period.
125
126 * In examples of syntax, use @var{musicexpr} for a music
127   expression.
128
129 * Variables or numbers which consist of a single character
130   (probably followed by a punctuation mark) should be tied
131   properly, either to the previous or the next word.  Example:
132
133       The variable@tie{}@var{a} ...
134
135 * To get consistent indentation in the DVI output it is better to
136   avoid the @verbatim environment.  Use the @example environment
137   instead if possible, but without extraneous indentation.  For
138   example, this
139
140     @example
141       foo {
142         bar
143       }
144     @end example
145
146   should be replaced with
147
148     @example
149     foo {
150       bar
151     }
152     @end example
153
154   where `@example' starts the line (without leading spaces).
155
156 * Do not compress the input vertically; this is, do not use
157
158     Beginning of logical unit
159     @example
160     ...
161     @end example
162     continuation of logical unit
163
164   but
165
166     Beginning of logical unit
167
168     @example
169     ...
170     @end example
171
172     @noindent
173     continuation of logical unit
174
175   This makes it easier to avoid forgetting the `@noindent'.  Only
176   use @noindent if the material is discussing the same material;
177   new material should simply begin without anything special on the
178   line above it.
179
180 * in @itemize use @item on a separate line like this:
181   @itemize
182   @item
183   Foo
184
185   @item
186   Bar
187
188   Do not use @itemize @bullet.
189
190 * To get LilyPond version, use @version{} (this does not work inside
191   LilyPond snippets).  If you write "@version{}" (enclosed with
192   quotes), or generally if @version{} is not followed by a space,
193   enclose it with
194
195   @w{ ... }
196
197   e.g.
198
199   @w{"@version{}"}
200
201   to prevent an ugly line break in PDF output.
202
203
204 %%%%% SYNTAX SURVEY
205
206 @c - single line comments
207   "@c NOTE:" is a comment which should remain in the final
208   version.  (gp only command ;)
209 @ignore ... @end ignore - multi-line comment
210
211 @cindex - General index. Please add as many as you can.  Don't
212   capitalize the first word.
213 @funindex - is for a \lilycommand.
214
215 @example ... @end ignore - example text that should be set as a
216   blockquote.  Any {} must be escaped with @{ }@
217 @itemize @item A @item B ... @end itemize - for bulleted lists.
218   Do not compress vertically like this.
219
220 @code{} - typeset in a tt-font. Use for actual lilypond code or
221   property/context names.  If the name contains a space, wrap
222   the entire thing inside @w{@code{  }}.
223 @notation{} - refers to pieces of notation, e.g.
224   "@notation{cres.}".  Also use to specific lyrics ("the
225   @notation{A - men} is centered")
226 @q{} - Single quotes. Used for `vague' terms.
227 @qq{} - Double quotes.  Used for actual quotes ("he said").
228
229 @tie{} - Variables or numbers which consist of a single character
230   (probably followed by a punctuation mark) should be tied
231   properly, either to the previous or the next word.  Example:
232     "The letter@tie{}@q{I} is skipped"
233
234 @var - Use for variables.
235 @warning{} - produces a "Note: " box. Use for important messages.
236
237 @bs - Generates a backslash inside @warning.
238     Any `\' used inside @warning (and @q or @qq) must be written as `@bs{}' 
239     (texinfo would also allow \\, but this breaks with PDF output).
240
241
242
243 %%%%% OTHER TEXT CONCERNS
244
245 * References must occur at the end of a sentence, for more
246   information see @ref{the texinfo manual}.  Ideally this should
247   also be the final sentence of a paragraph, but this is not
248   required.  Any link in a doc section must be duplicated in the
249   @seealso section at the bottom.
250
251 * Introducing examples must be done with
252      . (ie finish the previous sentence/paragaph)
253      : (ie `in this example:')
254      , (ie `may add foo with the blah construct,')
255   The old "sentence runs directly into the example" method is not
256   allowed any more.
257
258 * Abbrevs in caps, e.g., HTML, DVI, MIDI, etc.
259
260 * Colon usage
261
262   1. To introduce lists
263   2. When beginning a quote: "So, he said,..."
264      This usage is rarer.  Americans often just use a comma.
265   3. When adding a defining example at the end of a sentence.
266
267 * Non-ASCII characters which are in utf-8 should be directly used;
268   this is, don't say `Ba@ss{}tuba' but `Baßtuba'.  This ensures that
269   all such characters appear in all output formats.
270