]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/devel/doc-work.itexi
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / Documentation / devel / doc-work.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @node Documentation work
3 @chapter Documentation work
4
5 @menu
6 * Introduction to documentation work::  
7 * Texinfo introduction and usage policy::  
8 * Documentation policy::        
9 * Tips for writing docs::       
10 * Updating docs with convert-ly::  
11 * Translating the documentation::  
12 @end menu
13
14
15 @node Introduction to documentation work
16 @section Introduction to documentation work
17
18 Our documentation tries to adhere to our @ref{Documentation
19 policy}.  This policy contains a few items which may seem odd.
20 One policy in particular is often questioned by potential
21 contributors: we do not repeat material in the Notation Reference,
22 and instead provide links to the @qq{definitive} presentation of
23 that information.  Some people point out, with good reason, that
24 this makes the documentation harder to read.  If we repeated
25 certain information in relevant places, readers would be less
26 likely to miss that information.
27
28 That reasoning is sound, but we have two counter-arguments.
29 First, the Notation Reference -- one of @emph{five} manuals for
30 users to read -- is already over 500 pages long.  If we repeated
31 material, we could easily exceed 1000 pages!  Second, and much
32 more importantly, LilyPond is an evolving project.  New features
33 are added, bugs are fixed, and bugs are discovered and documented.
34 If features are discussed in multiple places, the documentation
35 team must find every instance.  Since the manual is so large, it
36 is impossible for one person to have the location of every piece
37 of information memorized, so any attempt to update the
38 documentation will invariably omit a few places.  This second
39 concern is not at all theoretical; the documentation used to be
40 plagued with inconsistent information.
41
42 If the documentation were targeted for a specific version -- say,
43 LilyPond 2.10.5 -- and we had unlimited resources to spend on
44 documentation, then we could avoid this second problem.  But since
45 LilyPond evolves (and that is a very good thing!), and since we
46 have quite limited resources, this policy remains in place.
47
48 A few other policies (such as not permitting the use of tweaks in
49 the main portion of NR 1+2) may also seem counter-intuitive, but
50 they also stem from attempting to find the most effective use of
51 limited documentation help.
52
53
54
55 @node Texinfo introduction and usage policy
56 @section Texinfo introduction and usage policy
57
58 @menu
59 * Texinfo introduction::        
60 * Documentation files::         
61 * Sectioning commands::         
62 * LilyPond formatting::         
63 * Text formatting::             
64 * Syntax survey::               
65 * Other text concerns::         
66 @end menu
67
68
69 @node Texinfo introduction
70 @subsection Texinfo introduction
71
72 The language is called Texinfo; you can see its manual here:
73
74 @uref{http://www.gnu.org/software/texinfo/manual/texinfo/}
75
76 However, you don't need to read those docs.  The most important
77 thing to notice is that text is text.  If you see a mistake in the
78 text, you can fix it.  If you want to change the order of
79 something, you can cut-and-paste that stuff into a new location.
80
81 @warning{Rule of thumb: follow the examples in the existing docs.
82 You can learn most of what you need to know from this; if you want
83 to do anything fancy, discuss it on @code{lilypond-devel} first.}
84
85
86 @node Documentation files
87 @subsection Documentation files
88
89 The user manuals lives in @file{Documentation/user/}.  In
90 particular, the files @file{lilypond-learning.ly} (LM),
91 @file{lilypond.itely} (NR), @file{music-glossary.tely} (MG), and
92 @file{lilypond-program} (AU).  Each chapter is written in a
93 separate file (ending in @file{.itely} for files containing
94 lilypond code, and @file{.itexi} for files without lilypond code);
95 see the @qq{main} file for each manual to determine the filename
96 of the specific chapter you wish to modify.
97
98 Developer manuals live in @file{Documentation/devel}.  Currently
99 there is only one; @file{contrib-guide.texi}.
100
101 Although snippets are part of documentation, they are not
102 (directly) part of the manuals.  For information about how to
103 modify them, see @ref{LSR work}.
104
105
106 @node Sectioning commands
107 @subsection Sectioning commands
108
109 Most of the manual operates at the
110
111 @example
112 @@node Foo
113 @@subsubsection Foo
114 @end example
115
116 @noindent
117 level.  Sections are created with
118
119 @example
120 @@node Foo
121 @@subsection Foo
122 @end example
123
124 @itemize
125 @item
126 Please leave two blank lines above a @@node; this makes it
127 easier to find sections in texinfo.
128
129 @item
130 Sectioning commands (@@node and @@section) must not appear
131 inside an @@ignore.  Separate those commands with a space, ie @@n
132 ode.
133
134 @end itemize
135
136
137 @node LilyPond formatting
138 @subsection LilyPond formatting
139
140 @itemize
141
142 @item
143 Use two spaces for indentation in lilypond examples.  (no
144 tabs)
145
146 @item
147 All text strings should be prefaced with #.  LilyPond does
148 not strictly require this, but it is helpful to get users
149 accustomed to this scheme construct.  ie @code{\set
150 Staff.instrumentName = #"cello"}
151
152 @item
153 All engravers should have double-quotes around them:
154
155 @example
156 \consists "Spans_arpeggio_engraver"
157 @end example
158
159 Again, LilyPond does not strictly require this, but it is a useful
160 standard to follow.
161
162 @item
163 Examples should end with a complete bar if possible.
164
165 @item
166 If possible, only write one bar per line.  The notes on each
167 line should be an independent line -- tweaks should occur on their
168 own line if possible.  Bad:
169
170 @example
171 \override textscript #'padding = #3 c1^"hi"
172 @end example
173
174 Good:
175
176 @example
177 \override textscript #'padding = #3
178 c1^"hi"
179 @end example
180
181 @item
182 Most LilyPond input should be produced with:
183
184 @example
185 @@lilypond[verbatim,quote,relative=2]
186 @end example
187
188 @noindent
189 or
190
191 @example
192 @@lilypond[verbatim,quote,relative=1]
193 @end example
194
195 If you want to use \layout@{@} or define variables, use
196
197 @example
198 @@lilypond[verbatim,quote]
199 @end example
200
201 In rare cases, other options may be used (or omitted), but ask first.
202
203 @item
204 Inspirational headwords are produced with
205
206 @example
207 @@lilypondfile[quote,ragged-right,line-width=16\cm,staffsize=16]
208 @{pitches-headword.ly@}
209 @end example
210
211 @item
212 LSR snippets are linked with
213
214 @example
215 @@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
216 @{filename.ly@}
217 @end example
218
219 @noindent
220 excepted in Templates, where `doctitle' may be omitted.
221
222 @item
223 Avoid long stretches of input code.  Noone is going to read
224 them in print.  Please create a smaller example.  (the smaller
225 example does not need to be minimal, however)
226
227 @item
228 Specify durations for at least the first note of every bar.
229
230 @item
231 If possible, end with a complete bar.
232
233 @item
234 Comments should go on their own line, and be placed before
235 the line(s) to which they refer.
236
237 @item
238 Add extra spaces around @{ @} marks; ie
239
240 @example
241 not:          \chordmode @{c e g@}
242 but instead:  \chordmode @{ c e g @}
243 @end example
244
245 @item
246 If you only have one bar per line, omit bar checks.  If you
247 put more than one bar per line (not recommended), then include bar
248 checks.
249
250 @item
251 If you want to work on an example outside of the manual (for
252 easier/faster processing), use this header:
253
254 @example
255 \paper @{
256   #(define dump-extents #t)
257   indent = 0\mm
258   line-width = 160\mm - 2.0 * 0.4\in
259   ragged-right = ##t
260   force-assignment = #""
261   line-width = #(- line-width (* mm  3.000000))
262 @}
263
264 \layout @{
265 @}
266 @end example
267
268 You may not change any of these values.  If you are making an
269 example demonstrating special \paper@{@} values, contact the
270 Documentation Editor.
271
272 @end itemize
273
274
275 @node Text formatting
276 @subsection Text formatting
277
278 @itemize
279
280 @item
281 Lines should be less than 72 characters long.  (I personally
282 recommend writing with 66-char lines, but don't bother modifying
283 existing material.)
284
285 @item
286 Do not use tabs.
287
288 @item
289 Do not use spaces at the beginning of a line (except in
290 @@example or @@verbatim environments), and do not use more than a
291 single space between words.  `makeinfo' copies the input lines
292 verbatim without removing those spaces.
293
294 @item
295 Use two spaces after a period.
296
297 @item
298 In examples of syntax, use @@var@{musicexpr@} for a music
299 expression.
300
301 @item
302 Don't use @@rinternals@{@} in the main text.  If you're
303 tempted to do so, you're probably getting too close to "talking
304 through the code".  If you really want to refer to a context, use
305 @@code@{@} in the main text and @@rinternals@{@} in the @@seealso.
306
307 @item
308 Variables or numbers which consist of a single character
309 (probably followed by a punctuation mark) should be tied properly,
310 either to the previous or the next word.  Example:
311
312 @example
313 The variable@@tie@{@}@@var@{a@} ...
314 @end example
315
316 @item
317 To get consistent indentation in the DVI output it is better
318 to avoid the @@verbatim environment.  Use the @@example
319 environment instead if possible, but without extraneous
320 indentation.  For example, this
321
322 @example
323 @@example
324   foo @{
325     bar
326   @}
327 @@end example
328 @end example
329
330 @noindent
331 should be replaced with
332
333 @example
334 @@example
335 foo @{
336   bar
337 @}
338 @@end example
339 @end example
340
341 @noindent
342 where `@@example' starts the line (without leading spaces).
343
344 @item
345 Do not compress the input vertically; this is, do not use
346
347 @example
348     Beginning of logical unit
349     @@example
350     ...
351     @@end example
352     continuation of logical unit
353 @end example
354
355 @noindent
356 but instead do
357
358 @example
359 Beginning of logical unit
360
361 @@example
362 ...
363 @@end example
364
365 @@noindent
366 continuation of logical unit
367 @end example
368
369 This makes it easier to avoid forgetting the `@@noindent'.  Only
370 use @@noindent if the material is discussing the same material;
371 new material should simply begin without anything special on the
372 line above it.
373
374 @item
375 in @@itemize use @@item
376 on a separate line like this:
377
378 @example
379 @@itemize
380 @@item
381 Foo
382
383 @@item
384 Bar
385 @end example
386
387 Do not use @@itemize @@bullet.
388
389 @item
390 To get LilyPond version, use @@version@{@} (this does not work
391 inside LilyPond snippets).  If you write "@@version@{@}" (enclosed
392 with quotes), or generally if @@version@{@} is not followed by a
393 space, tere will be an ugly line break in PDF output unless you
394 enclose it with
395
396 @example
397 @@w@{ ... @}
398
399   e.g.
400
401 @@w@{"@@version@{@}"@}
402 @end example
403
404 @end itemize
405
406
407 @node Syntax survey
408 @subsection Syntax survey
409
410 @itemize
411 @item
412 @@c - single line comments
413   "@@c NOTE:" is a comment which should remain in the final
414   version.  (gp only command ;)
415 @item
416 @@ignore ... @@end ignore - multi-line comment
417
418 @item
419 @@cindex - General index. Please add as many as you can.  Don't
420   capitalize the first word.
421 @item
422 @@funindex - is for a \lilycommand.
423
424 @item
425 @@example ... @@end ignore - example text that should be set as a
426   blockquote.  Any @{@} must be escaped with @@@{ @}@@
427 @item
428 @@itemize @@item
429 A @@item
430 B ... @@end itemize - for bulleted lists.
431   Do not compress vertically like this.
432
433 @item
434 @@code@{@} - typeset in a tt-font. Use for actual lilypond code or
435   property/context names.  If the name contains a space, wrap
436   the entire thing inside @@w@{@@code@{  @}@}.
437 @item
438 @@notation@{@} - refers to pieces of notation, e.g.
439   "@@notation@{cres.@}".  Also use to specific lyrics ("the
440   @@notation@{A - men@} is centered").  Only use once per subsection
441   per term.
442 @item
443 @@q@{@} - Single quotes. Used for `vague' terms.
444 @item
445 @@qq@{@} - Double quotes.  Used for actual quotes ("he said") or for
446   introducing special input modes.
447
448 @item
449 @@tie@{@} - Variables or numbers which consist of a single character
450   (probably followed by a punctuation mark) should be tied
451   properly, either to the previous or the next word.  Example:
452     "The letter@@tie@{@}@@q@{I@} is skipped"
453
454 @item
455 @@var - Use for variables.
456 @item
457 @@warning@{@} - produces a "Note: " box. Use for important messages.
458
459 @item
460 @@bs - Generates a backslash inside @@warning.
461     Any `\' used inside @@warning (and @@q or @@qq) must be written as `@@bs@{@}' 
462     (texinfo would also allow \\, but this breaks with PDF output).
463
464 @item
465 @@ref@{@} - normal references (type the exact node name inside the
466 @{@}).  @@ruser@{@} - link to the NR.  @@rlearning@{@} - link to
467 the LM.  @@rglos@{@} - link to the MG.  @@rprogram@{@} - link to
468 the AU.  @@rlsr@{@} - link to a Snippet section.  @@rinternals@{@}
469 - link to the IR.
470
471 @end itemize
472
473
474
475 @node Other text concerns
476 @subsection Other text concerns
477
478 @itemize
479
480 @item
481 References must occur at the end of a sentence, for more
482 information see @@ref@{the texinfo manual@}.  Ideally this should
483 also be the final sentence of a paragraph, but this is not
484 required.  Any link in a doc section must be duplicated in the
485 @@seealso section at the bottom.
486
487 @item
488 Introducing examples must be done with
489
490 @example
491      . (ie finish the previous sentence/paragaph)
492      : (ie `in this example:')
493      , (ie `may add foo with the blah construct,')
494 @end example
495
496 The old "sentence runs directly into the example" method is not
497 allowed any more.
498
499 @item
500 Abbrevs in caps, e.g., HTML, DVI, MIDI, etc.
501
502 @item
503 Colon usage
504
505 @enumerate
506
507 @item
508 To introduce lists
509
510 @item
511 When beginning a quote: "So, he said,...".
512
513 This usage is rarer.  Americans often just use a comma.
514
515 @item
516 When adding a defining example at the end of a sentence.
517
518 @end enumerate
519
520 @item
521 Non-ASCII characters which are in utf-8 should be directly used;
522 this is, don't say `Ba@@ss@{@}tuba' but `Baßtuba'.  This ensures
523 that all such characters appear in all output formats.
524
525 @end itemize
526
527
528
529
530 @node Documentation policy
531 @section Documentation policy
532
533 @menu
534 * Books::                       
535 * Section organization::        
536 * Checking cross-references::   
537 * General writing::             
538 * Technical writing style::     
539 @end menu
540
541 @node Books
542 @subsection Books
543
544 There are four parts to the documentation: the Learning Manual,
545 the Notation Reference, the Program Reference, and the Music
546 Glossary.
547
548 @itemize
549
550 @item
551 Learning Manual:
552
553 The LM is written in a tutorial style which introduces the most
554 important concepts, structure and syntax of the elements of a
555 LilyPond score in a carefully graded sequence of steps.
556 Explanations of all musical concepts used in the Manual can be
557 found in the Music Glossary, and readers are assumed to have no
558 prior knowledge of LilyPond.  The objective is to take readers to
559 a level where the Notation Reference can be understood and
560 employed to both adapt the templates in the Appendix to their
561 needs and to begin to construct their own scores.  Commonly used
562 tweaks are introduced and explained.  Examples are provided
563 throughout which, while being focussed on the topic being
564 introduced, are long enough to seem real in order to retain the
565 readers' interest.  Each example builds on the previous material,
566 and comments are used liberally.  Every new aspect is thoroughly
567 explained before it is used.
568
569 Users are encouraged to read the complete Learning Manual from
570 start-to-finish.
571
572
573 @item
574 Notation Reference: a (hopefully complete) description of LilyPond
575 input notation.  Some material from here may be duplicated in the
576 Learning Manual (for teaching), but consider the NR to be the
577 "definitive" description of each notation element, with the LM
578 being an "extra".  The goal is _not_ to provide a step-by-step
579 learning environment -- do not avoid using notation that has not
580 be introduced previously in the NR  (for example, use \break if
581 appropriate).  This section is written in formal technical writing
582 style.
583
584 Avoid duplication.  Although users are not expected to read this
585 manual from start to finish, they should be familiar with the
586 material in the Learning Manual (particularly ``Fundamental
587 Concepts''), so do not repeat that material in each section of
588 this book.  Also watch out for common constructs, like ^ - _ for
589 directions -- those are explained in NR 3.  In NR 1, you can
590 write: DYNAMICS may be manually placed above or below the staff,
591 see @@ref@{Controlling direction and placement@}.
592
593 Most tweaks should be added to LSR and not placed directly in the
594 .itely file.  In some cases, tweaks may be placed in the main
595 text, but ask about this first.
596
597 Finally, you should assume that users know what the notation
598 means; explaining musical concepts happens in the Music Glossary.
599
600
601 @item
602 Application Usage: information about using the program lilypond
603 with other programs (lilypond-book, operating systems, GUIs,
604 convert-ly, etc).  This section is written in formal technical
605 writing style.
606
607 Users are not expected to read this manual from start to finish.
608
609
610 @item
611 Music Glossary: information about the music notation itself.
612 Explanations and translations about notation terms go here.
613
614 Users are not expected to read this manual from start to finish.
615
616 @item
617 Internals Reference: not really a documentation book, since it is
618 automagically generated from the source, but this is its name.
619
620 @end itemize
621
622
623 @node Section organization
624 @subsection Section organization
625
626 @itemize
627
628 @item
629 The order of headings inside documentation sections should
630 be:
631
632 @example
633 main docs
634 @@predefined
635 @@endpredefined
636 @@snippets
637 @@seealso
638 @@knownissues
639 @end example
640
641 @item
642 You @emph{must} include a @@seealso.
643
644 @itemize
645 @item
646 The order of items inside the @@seealso section is
647
648 @example
649 Music Glossary:
650 @@rglos@{foo@},
651 @@rglos@{bar@}.
652
653 Learning Manual:
654 @@rlearning@{baz@},
655 @@rlearning@{foozle@}.
656
657 Notation Reference:
658 @@ruser@{faazle@},
659 @@ruser@{boo@}.
660
661 Application Usage:
662 @@rprogram@{blah@}.
663
664 Installed Files:
665 @@file@{path/to/dir/blahz@}.
666
667 Snippets: @@rlsr@{section@}.
668
669 Internals Reference:
670 @@rinternals@{fazzle@},
671 @@rinternals@{booar@}.
672 @end example
673
674 @item
675 If there are multiple entries, separate them by commas but do not
676 include an `and'.
677
678 @item
679 Always end with a period.
680
681 @item
682 Place each link on a new line as above; this makes it much easier
683 to add or remove links.  In the output, they appear on a single
684 line.
685
686 ("Snippets" is REQUIRED; the others are optional)
687
688 @item
689 Any new concepts or links which require an explanation should go
690 as a full sentence(s) in the main text.
691
692 @item
693 Don't insert an empty line between @@seealso and the first entry!
694 Otherwise there is excessive vertical space in the PDF output.
695
696 @end itemize
697
698 @item
699 To create links, use @@ref@{@} if the link is within the same
700 manual.
701
702 @item
703 @@predefined ... @@endpredefined is for commands in ly/*-init.ly
704 FIXME?
705
706 @item
707 Do not include any real info in second-level sections (ie 1.1
708 Pitches).  A first-level section may have introductory material,
709 but other than that all material goes into third-level sections
710 (ie 1.1.1 Writing Pitches).
711
712 @end itemize
713
714
715 @node Checking cross-references
716 @subsection Checking cross-references
717
718 Cross-references between different manuals are heavily used in the
719 documentation, but they are not checked during compilation.
720 However, if you compile the documentation, a script called
721 check_texi_refs can help you with checking and fixing these
722 cross-references; for information on usage, cd into a source tree
723 where documentation has been built, cd into Documentation and look
724 for check-xrefs and fix-xrefs targets in 'make help' output.  Note
725 that you have to find yourself the source files to fix
726 cross-references in the generated documentation such as the
727 Internals Reference; e.g. you can grep scm/ and lily/.
728
729
730 @node General writing
731 @subsection General writing
732
733 @itemize
734
735 @item
736 Do not forget to create @@cindex entries for new sections of text.
737 Enter commands with @@funindex, i.e.
738
739 @example
740 @@cindex pitches, writing in different octaves
741 @@funindex \relative
742 @end example
743
744 @noindent
745 do not bother with the @@code@{@} (they are added automatically).
746 These items are added to both the command index and the unified
747 index.
748
749 Both index commands should go in front of the actual material.
750
751 @@cindex entries should not be capitalized, ie
752
753 @example
754 @@cindex time signature
755 @end example
756
757 @noindent
758 is preferred instead of @qq{Time signature},   Only use capital
759 letters for musical terms which demand them, like D.S. al Fine.
760
761 For scheme functions, only include the final part, i.e.,
762
763 @example
764 @@funindex modern-voice-cautionary
765      and NOT
766 @@funindex #(set-accidental-style modern-voice-cautionary)
767 @end example
768
769 @item
770 Preferred terms:
771
772 @itemize
773
774 @item
775 In general, use the American spellings.  The internal lilypond
776 property names use this spelling.
777
778 @item
779 List of specific terms:
780
781 @example
782 canceled
783 simultaneous    NOT concurrent
784 measure: the unit of music
785 bar line: the symbol delimiting a measure   NOT barline
786 note head   NOT notehead
787 chord construct   NOT chord (when referring to <>)
788 @end example
789
790 @end itemize
791
792 @end itemize
793
794
795 @node Technical writing style
796 @subsection Technical writing style
797
798 These refer to the NR.  The LM uses a more gentle, colloquial
799 style.
800
801 @itemize
802
803 @item
804 Do not refer to LilyPond in the text.  The reader knows what the
805 manual is about.  If you do, capitalization is LilyPond.
806
807 @item
808 If you explicitly refer to @q{lilypond} the program (or any other
809 command to be executed), write @code{@@command@{lilypond@}}.
810
811 @item
812 Do not explicitly refer to the reader/user.  There is no one else
813 besides the reader and the writer.
814
815 @item
816 Avoid contractions (don't, won't, etc.).  Spell the words out completely.
817
818 @item
819 Avoid abbreviations, except for commonly used abbreviations of foreign
820 language terms such as etc. and i.e.
821
822 @item
823 Avoid fluff (@qq{Notice that,} @qq{as you can see,}
824 @qq{Currently,}).
825
826 @item
827 The use of the word @q{illegal} is inappropriate in most cases.
828 Say @q{invalid} instead.
829
830 @end itemize
831
832
833 @node Tips for writing docs
834 @section Tips for writing docs
835
836 In the NR, I highly recommend focusing on one subsection at a
837 time.  For each subsection,
838
839 @itemize
840
841 @item
842 check the mundane formatting.  Are the headings (@@predefined,
843 @@seealso, etc.) in the right order?
844
845 @item
846 add any appropriate index entries.
847
848 @item
849 check the links in the @@seealso section -- links to music
850 glossary, internal references, and other NR sections are the main
851 concern.  Check for potential additions.
852
853 @item
854 move LSR-worthy material into LSR.  Add the snippet, delete the
855 material from the .itely file, and add a @@lilypondfile command.
856
857 @item
858 check the examples and descriptions.  Do they still work?
859 @strong{Do not} assume that the existing text is
860 accurate/complete; some of the manual is highly out of date.
861
862 @item
863 is the material in the @@knownissues  still accurate?
864
865 @item
866 can the examples be improved (made more explanatory), or is there
867 any missing info?  (feel free to ask specific questions on -user;
868 a couple of people claimed to be interesting in being
869 @qq{consultants} who would help with such questions)
870
871 @end itemize
872
873 In general, I favor short text explanations with good examples --
874 @qq{an example is worth a thousand words}.  When I worked on the
875 docs, I spent about half my time just working on those tiny
876 lilypond examples.  Making easily-understandable examples is much
877 harder than it looks.
878
879
880 @subsubheading Tweaks
881
882 In general, any \set or \override commands should go in the
883 @qq{select snippets} section, which means that they should go in
884 LSR and not the .itely file.  For some cases, the command
885 obviously belongs in the @qq{main text} (i.e. not inside
886 @@predefined or @@seealso or whatever) -- instrument names are a
887 good example of this.
888
889 @example
890 \set Staff.instrumentName = #"foo"
891 @end example
892
893 On the other side of this,
894
895 @example
896 \override Score.Hairpin #'after-line-breaking = ##t
897 @end example
898
899 clearly belongs in LSR.
900
901 I'm quite willing to discuss specific cases if you think that a
902 tweaks needs to be in the main text.  But items that can go into
903 LSR are easier to maintain, so I'd like to move as much as
904 possible into there.
905
906
907 It would be @qq{nice} if you spent a lot of time crafting nice
908 tweaks for users... but my recommendation is @strong{not} to do
909 this.  There's a lot of doc work to do without adding examples of
910 tweaks.  Tweak examples can easily be added by normal users by adding
911 them to the LSR.
912
913 One place where a documentation writer can profitably spend time writing
914 or upgrading tweaks is creating tweaks to deal with known issues.  It
915 would be ideal if every significant known issue had a workaround to avoid
916 the difficulty.
917
918 @seealso
919
920 @ref{Adding and editing snippets}.
921
922
923 @node Updating docs with convert-ly
924 @section Updating doc with @command{convert-ly}
925
926 cd into Documentation and run
927
928 @example
929 find . -name '*.itely' | xargs convert-ly -e
930 @end example
931
932 @noindent
933 This also updates translated documentation.
934
935
936
937 @node Translating the documentation
938 @section Translating the documentation
939
940 @menu
941 * Getting started with documentation translation::  
942 * Documentation translation details::  
943 * Documentation translation maintenance::  
944 * Translations management policies::  
945 * Technical background::        
946 @end menu
947
948 @node Getting started with documentation translation
949 @subsection Getting started with documentation translation
950
951 First, get the sources from the Git repository, see @ref{Documentation
952 translations source code}.
953
954 @menu
955 * Translation requirements::    
956 * Which documentation can be translated::  
957 * Starting translation in a new language::  
958 @end menu
959
960 @node Translation requirements
961 @unnumberedsubsubsec Translation requirements
962
963 Working on LilyPond documentation translations requires the following
964 pieces of software, in order to make use of dedicated helper tools:
965
966 @itemize
967 @item Python 2.4 or higher,
968 @item GNU Make,
969 @item Gettext.
970 @end itemize
971
972 It is not required to build LilyPond and the documentation to
973 translate the documentation.  However, if you have enough time and
974 motivation and a suitable system, it can be very useful to build at
975 least the documentation so that you can check the output yourself and
976 more quickly; if you are interested, see @ref{Compiling from source}.
977
978 @menu
979 @end menu
980
981 @node Which documentation can be translated
982 @unnumberedsubsubsec Which documentation can be translated
983
984 The makefiles and scripts infrastructure currently supports translation
985 of the following documentation:
986
987 @itemize
988 @item documentation index (HTML);
989 @item user manual and program usage -- Texinfo source, PDF and HTML
990 output; Info output might be added if there is enough demand for it;
991 @item the News document.
992 @end itemize
993
994 The following pieces of documentation should be added soon, by
995 descending order of priority:
996
997 @itemize
998 @item automatically generated documentation: markup commands,
999 predefined music functions;
1000 @item the Snippets List;
1001 @item the examples page;
1002 @item the Internals Reference.
1003 @end itemize
1004
1005
1006 @node Starting translation in a new language
1007 @unnumberedsubsubsec Starting translation in a new language
1008
1009 At top of the source directory, do
1010
1011 @example
1012 ./autogen.sh
1013 @end example
1014
1015 @noindent
1016 or (if you want to install your self-compiled LilyPond locally)
1017
1018 @example
1019 ./autogen.sh --prefix=$HOME
1020 @end example
1021
1022 @noindent
1023 If you want to compile LilyPond -- which is almost required to build
1024 the documentation, but is not required to do translation only -- fix
1025 all dependencies and rerun @command{./configure} (with the same
1026 options as for @command{autogen.sh}).
1027
1028 Then @command{cd} into @file{Documentation} and run
1029
1030 @example
1031 make ISOLANG=@var{MY-LANGUAGE} new-lang
1032 @end example
1033
1034 @noindent
1035 where @var{MY-LANGUAGE} is the ISO 639 language code.
1036
1037 Finally, add a language definition for your language in
1038 @file{python/langdefs.py}.
1039
1040 Before starting the real translation work, it is recommended to commit
1041 changes you made so far to Git, so e.g. you are able to get back to
1042 this state of the sources easily if needed; see @ref{Sharing your
1043 changes}.
1044
1045
1046 @node Documentation translation details
1047 @subsection Documentation translation details
1048
1049 Please follow all the instructions with care to ensure quality work.
1050
1051 All files should be encoded in UTF-8.
1052
1053 @menu
1054 * Files to be translated::      
1055 * Translating the Learning Manual and other Texinfo documentation::  
1056 * Translating the Notation Reference and Application Usage::  
1057 * Translating the Documentation index index.html.in::  
1058 @end menu
1059
1060 @node Files to be translated
1061 @unnumberedsubsubsec Files to be translated
1062
1063 @include doc-translation-list.itexi
1064
1065 @node Translating the Learning Manual and other Texinfo documentation
1066 @unnumberedsubsubsec Translating the Learning Manual and other Texinfo documentation
1067
1068 Any title which comes with one of the following commands must not be
1069 translated directly in the Texinfo source
1070
1071 @example
1072 @@node                                                   @@majorheading
1073 @@chapter       @@unnumbered          @@appendix           @@chapheading
1074 @@section       @@unnumberedsec       @@appendixsec        @@heading
1075 @@subsection    @@unnumberedsubsec    @@appendixsubsec     @@subheading
1076 @@subsubsection @@unnumberedsubsubsec @@appendixsubsubsec  @@subsubheading
1077 @@ref  @@rglos  @@ruser  @@rlearning  @@rprogram  @@rlsr
1078 @end example
1079
1080 The same applies to first argument of @code{@@r@var{manual}named}
1081 commands; however, the second argument @var{Bar baz} of
1082 @code{@@ref@{@var{Foo},@var{Bar baz},,@var{info-file}@}} and
1083 @code{@@r@var{manual}named@{@var{Foo},@var{Bar baz}@}} should be
1084 translated.
1085
1086 @code{@@uref}'s names are to be translated.
1087
1088 In any section which looks like
1089
1090 @example
1091 @@menu
1092 * @var{node1}:: @var{thing1}
1093 * @var{node2}:: @var{thing2}
1094 ...
1095 @@end menu
1096 @end example
1097
1098 @noindent
1099 the node names @var{nodeN} are @emph{not} to be translated, whereas
1100 extra title information @var{thingN} is.
1101
1102 Every node name or section title must from now on be translated
1103 separately in a @file{.po} file (just as well as LilyPond output
1104 messages) in @file{Documentation/po}.  The Gettext domain is named
1105 @code{lilypond-doc}, and unlike @code{lilypond} domain it is not
1106 managed through the Free Translation Project.
1107
1108
1109 Take care of using typographic rules for your language, especially in
1110 @file{user/macros.itexi}.
1111
1112
1113 Please keep verbatim copies of music snippets (in @code{@@lilypond}
1114 blocs).  However, some music snippets containing text that shows in
1115 the rendered music, and sometimes translating this text really helps
1116 the user to understand the documentation; in this case, and only in
1117 this case, you may as an exception translate text in the music
1118 snippet, and then you must add a line immediately before the
1119 @code{@@lilypond} block, starting with
1120
1121 @example
1122 @@c KEEP LY
1123 @end example
1124
1125 @noindent
1126 Otherwise the music snippet would be reset to the same content as the
1127 English version at next @command{make snippet-update} run -- see
1128 @ref{Updating documentation translation}.
1129
1130 When you encounter
1131
1132 @example
1133 @@lilypondfile[<number of fragment options>,texidoc]@{@var{filename.ly}@}
1134 @end example
1135
1136 @noindent
1137 in the source, open @file{input/lsr/@var{filename}.ly}, translate the
1138 @code{texidoc} header field it contains, enclose it with
1139 @code{texidoc@var{MY-LANGUAGE} = "} and @code{"}, and write it into
1140 @file{input/texidocs/@var{filename}.texidoc} -- please keep possibly
1141 existing translations in other languages!  Additionnally, you may
1142 translate the snippet's title in @code{doctitle} header field, in case
1143 @code{doctitle} is a fragment option used in @code{@@lilypondfile};
1144 you can do this exactly the same way as @code{texidoc}.  For instance,
1145 @file{input/texidocs/@var{filename}.texidoc} may contain
1146
1147 @example
1148 doctitlees = "Spanish title baz"
1149 texidoces = "
1150 Spanish translation blah
1151 "
1152 doctitlede = "German title bar"
1153 texidocde = "German translation foo
1154 "
1155 @end example
1156
1157 @code{@@example} blocs need not be verbatim copies, e.g. variable
1158 names, file names and comments should be translated.
1159
1160 Index entries (@code{@@cindex} and so on) should be translated.
1161
1162 Finally, please carefully apply every rule exposed in @ref{Texinfo
1163 introduction and usage policy}, and @ref{Documentation policy}.  If
1164 one of these rules conflicts with a rule specific to your language,
1165 please ask the Translation meister and/or the Documentation Editors on
1166 @email{lilypond-devel@@gnu.org}.
1167
1168
1169 @node Translating the Notation Reference and Application Usage
1170 @unnumberedsubsubsec Translating the Notation Reference and Application Usage
1171
1172 Copy @file{user/lilypond.tely} (or @file{user/lilypond-program.tely},
1173 respectively) into @file{@var{MY-LANGUAGE}/user}, then translate this
1174 file and run @code{skeleton-update} -- see @ref{Updating documentation
1175 translation}.  Your are now ready to translate the Notation Reference
1176 (Application Usage, respectively) exactly like the Learning Manual.
1177
1178
1179 @node Translating the Documentation index index.html.in
1180 @unnumberedsubsubsec Translating the Documentation index @file{index.html.in}
1181
1182 Unlike almost all HTML pages in this documentation, links in this page
1183 are not tweaked by @file{postprocess_html.py}, so links should be
1184 manually edited to link to existing translations.
1185
1186
1187 @node Documentation translation maintenance
1188 @subsection Documentation translation maintenance
1189
1190 Several tools have been developed to make translations maintenance
1191 easier.  These helper scripts make use of the power of Git, the
1192 version control system used for LilyPond development.
1193
1194 @menu
1195 * Check state of translation::  
1196 * Updating documentation translation::  
1197 @end menu
1198
1199 @node Check state of translation
1200 @unnumberedsubsubsec Check state of translation
1201
1202 First pull from Git, then cd into @file{Documentation/} (or at top of
1203 the source tree, replace @command{make} with @command{make -C
1204 Documentation}) and run
1205
1206 @example
1207 make ISOLANG=@var{MY_LANGUAGE} check-translation
1208 @end example
1209
1210 @noindent
1211 This presents a diff of the original files since the most recent
1212 revision of the translation.  To check a single file, cd into
1213 @file{Documentation/} and run
1214
1215 @example
1216 make CHECKED_FILES=@var{MY_LANGUAGE/user/foo.itely} check-translation
1217 @end example
1218
1219 To see only which files need to be updated, do
1220
1221 @example
1222 make ISOLANG=@var{MY_LANGUAGE} check-translation | grep 'diff --git'
1223 @end example
1224
1225 To avoid printing terminal colors control characters, which is often
1226 desirable when you redirect output to a file, run
1227
1228 @example
1229 make ISOLANG=@var{MY_LANGUAGE} NO_COLOR=1 check-translation
1230 @end example
1231
1232 Global state of the translation is recorded in
1233 @file{Documentation/translations.html.in}, which is used to generate
1234 Translations status page.  To update that page, do from
1235 @file{Documentation/}
1236
1237 @example
1238 make translation-status
1239 @end example
1240
1241 This will also leave @file{out/translations-status.txt}, which contains
1242 up-to-dateness percentages for each translated file, and update word
1243 counts of documentation files in this Guide.
1244
1245 @seealso
1246
1247 @ref{Maintaining without updating translations}.
1248
1249
1250 @node Updating documentation translation
1251 @unnumberedsubsubsec Updating documentation translation
1252
1253 Instead of running @code{check-translation}, you may want to run
1254 @code{update-translation}, which will run your favorite text editor to
1255 update files.  First, make sure environment variable @code{EDITOR} is
1256 set to a text editor command, then run from @file{Documentation/}
1257
1258 @example
1259 make ISOLANG=@var{MY_LANGUAGE} update-translation
1260 @end example
1261
1262 or to update a single file
1263
1264 @example
1265 make CHECKED_FILES=@var{MY_LANGUAGE/user/foo.itely} update-translation
1266 @end example
1267
1268 For each file to be udpated, update-translation will open your text
1269 editor with this file and a diff of the file in English; if the diff
1270 cannot be generated or is bigger than the file in English itself, the
1271 full file in English will be opened instead.
1272
1273 Texinfo skeleton files, i.e. @file{.itely} files not yet translated,
1274 containing only the Texinfo structure can be updated automatically:
1275 whenever @command{make check-translation} shows that such files should
1276 be updated, run from @file{Documentation/}
1277
1278 @example
1279 make ISOLANG=@var{MY_LANGUAGE} skeleton-update
1280 @end example
1281
1282 @file{.po} message catalogs in @file{Documentation/po/} may be updated
1283 by issuing from @file{Documentation/} or @file{Documentation/po/}
1284
1285 @example
1286 make po-update
1287 @end example
1288
1289 @warning{if you run po-update and somebody else does the same and
1290 pushes before you push or send a patch to be applied, there will be a
1291 conflict when you pull.  Therefore, it is better that only the
1292 Translation meister runs this command.}
1293
1294 Updating music snippets can quickly become cumbersome, as most
1295 snippets should be identical in all languages.  Fortunately, there is
1296 a script that can do this odd job for you (run from
1297 @file{Documentation/}):
1298
1299 @example
1300 make ISOLANG=@var{MY_LANGUAGE} snippet-update
1301 @end example
1302
1303 This script overwrites music snippets in
1304 @file{@var{MY_LANGUAGE/user/every.itely}} with music snippets from
1305 @file{@var{user/every.itely}}.  It ignores skeleton files, and keeps
1306 intact music snippets preceded with a line starting with @code{@@c
1307 KEEP LY}; it reports an error for each @file{.itely} that has not the
1308 same music snippet count in both languages.  Always use this script
1309 with a lot of care, i.e. run it on a clean Git working tree, and check
1310 the changes it made with @command{git diff} before committing; if you
1311 don't do so, some @code{@@lilypond} snippets might be broken or make
1312 no sense in their context.
1313
1314 Finally, a command runs the three update processes above for all
1315 enabled languages (from @file{Documentation/}):
1316
1317 @example
1318 make all-translations-update
1319 @end example
1320
1321 Use this command with caution, and keep in mind it will not be really
1322 useful until translations are stabilized after the end of GDP.
1323
1324 @seealso
1325
1326 @ref{Maintaining without updating translations}.
1327
1328
1329 @node Translations management policies
1330 @subsection Translations management policies
1331
1332 These policies show the general intent of how the translations should
1333 be managed, they aim at helping translators, developers and
1334 coordinators work efficiently.
1335
1336 @menu
1337 * Maintaining without updating translations::  
1338 * Managing documentation translation with Git::  
1339 @end menu
1340
1341 @node Maintaining without updating translations
1342 @unnumberedsubsubsec Maintaining without updating translations
1343
1344 Keeping translations up to date under heavy changes in the
1345 documentation in English may be almost impossible, especially as
1346 during the former Grand Documentation Project (GDP) or the Grand
1347 Organization Project (GOP) when a lot of contributors brings changes.
1348 In addition, transloators may be (and that) involved in these porjects too.
1349
1350 it is possible -- and even recommended -- to
1351 perform some maintaining that keeps translated documentation usable
1352 and eases future translation updating.  The rationale below the tasks
1353 list motivates this plan.  The rationale below the tasks
1354 list motivates this plan.
1355
1356 The following tasks are listed in decreasing priority order.
1357
1358 @enumerate
1359 @item Update macros.itexi.
1360 For each obsolete macro definition, if it is possible to update macro
1361 usage in documentation with an automatic text or regexp substitution,
1362 do it and delete the macro definition from macros.itexi; otherwise,
1363 mark this macro definition as obsolete with a comment, and keep it in
1364 macros.itexi until the documentation translation has been updated and
1365 no longer uses this macro.
1366
1367 @item Update @file{*.tely} files completely with
1368 @command{make check-translation} -- you may want to redirect ouptput
1369 to a file because of overwhelming output, or call check-translation.py
1370 on individual files, see @ref{Check state of translation}.
1371
1372 @item In @file{.itelys}, match sections and .itely file names with those from
1373 English docs, which possibly involves moving nodes contents in block
1374 between files, without updating contents itself.  In other words, the
1375 game is catching where has gone each section.  In Learning manual, and
1376 in Notation Reference sections which have been revised in GDP, there
1377 may be completely new sections: in this case, copy @code{@@node} and
1378 @code{@@section}-command from English docs, and add the marker for
1379 untranslated status @code{@@untranslated} on a single line.  Note that
1380 it is not possible to exactly match subsections or subsubsections of
1381 documentation in English, when contents has been deeply revised; in
1382 this case, keep obsolete (sub)subsections in the translation, marking
1383 them with a line @code{@@c obsolete} just before the node.
1384
1385 Emacs with Texinfo mode makes this step easier:
1386
1387 @itemize
1388 @item without Emacs AucTeX installed, @key{C-c C-s} shows structure of current
1389 Texinfo file in a new buffer *Occur*; to show structure of two files
1390 simultaneously, first split Emacs window in 4 tiles (with @key{C-x 1}
1391 and @key{C-x 2}), press @key{C-c C-s} to show structure of one file
1392 (e.g. the translated file), copy *Occur* contents into *Scratch*, then
1393 press @key{C-c C-s} for the other file.
1394
1395 If you happen to have installed AucTeX, you can either call the macro
1396 by doing @key{M-x texinfo-show-structure} or create a key binding in your
1397 @file{~/.emacs}, by adding the four following lines:
1398
1399 @example
1400 (add-hook 'Texinfo-mode-hook
1401           '(lambda ()
1402              (define-key Texinfo-mode-map "\C-cs"
1403               'texinfo-show-structure)))
1404 @end example
1405
1406 @noindent
1407 and then obtain the structure in the *Occur* buffer with @key{C-c s}.
1408
1409 @item Do not bother updating @code{@@menu}s when all menu entries are in the same
1410 file, just do @key{C-c C-u C-a} ("update all menus") when you have
1411 updated all the rest of the file.
1412
1413 @item Moving to next or previous node using incremental search: press
1414 @key{C-s} and type @code{node} (or @key{C-s @@node} if the text
1415 contains the word @q{node}) then press @key{C-s} to move to next node
1416 or @key{C-r} to move to previous node.  Similar operation can be used
1417 to move to the next/previous section.  Note that every cursor move
1418 exits incremental search, and hitting @key{C-s} twice starts
1419 incremental search with the text entered in previous incremental
1420 search.
1421
1422 @item Moving a whole node (or even a sequence of nodes): jump to beginning
1423 of the node (quit incremental search by pressing an arrow), press
1424 @key{C-SPACE}, press @key{C-s node} and repeat @key{C-s} until you
1425 have selected enough text, cut it with @key{C-w} or @key{C-x}, jump to
1426 the right place (moving between nodes with the previous hint is often
1427 useful) and paste with @key{C-y} or @key{C-v}.
1428 @end itemize
1429
1430 @item Update sections finished in the English documentation; check
1431 sections status at
1432 @uref{http://lilypondwiki.tuxfamily.org/index.php?title=Documentation_coordination}.
1433
1434 @item Update documentation PO.  It is recommended not to update
1435 strings which come from documentation that is currently deeply revised
1436 in English, to avoid doing the work more than once.
1437
1438 @item Fix broken cross-references by running (from @file{Documentation/})
1439
1440 @example
1441 make ISOLANG=@var{YOUR-LANGUAGE} fix-xrefs
1442 @end example
1443
1444 @noindent
1445 This step requires a sucessful documentation build (with @command{make
1446 web}).  Some cross-references are broken because they point to a node
1447 that exists in the documentation in English, which has not been added
1448 to the translation; in this case, do not fix the cross-reference but
1449 keep it "broken", so that the resulting HTML link will point to an
1450 existing page of documentation in English.
1451 @end enumerate
1452
1453 @subsubheading Rationale
1454
1455 You may wonder if it would not be better to leave translations as-is
1456 until you can really start updating translations.  There are several
1457 reasons to do these maintenance tasks right now.
1458
1459 @itemize
1460 @item This will have to be done sooner or later anyway, before updating
1461 translation of documentation contents, and this can already be done
1462 without needing to be redone later, as sections of documentation in
1463 English are mostly revised once.  However, note that not all
1464 documentation sectioning has been revised in one go, so all this
1465 maintenance plan has to be repeated whenever a big reorganization is
1466 made.
1467
1468 @item This just makes translated documentation take advantage of the new
1469 organization, which is better than the old one.
1470
1471 @item Moving and renaming sections to match sectioning of documentation in
1472 English simplify future updating work: it allows updating the
1473 translation by side-by-side comparison, without bothering whether
1474 cross-reference names already exist in the translation.
1475
1476 @item Each maintenance task except @q{Updating PO files} can be done by
1477 the same person for all languages, which saves overall time spent by
1478 translators to achieve this task: the node names and section titles
1479 are in English, so you can do.  It is important to take advantage of
1480 this now, as it will be more complicated (but still possible) to do
1481 step 3 in all languages when documentation is compiled with
1482 @command{texi2html} and node names are directly translated in source
1483 files.
1484 @end itemize
1485
1486
1487 @node Managing documentation translation with Git
1488 @unnumberedsubsubsec Managing documentation translation with Git
1489
1490 This policy explains how to manage Git branches and commit
1491 translations to Git.
1492
1493 @itemize
1494 @item Translation changes matching master branch are preferably made on
1495 @code{lilypond/translation} branch; they may be pushed directly to
1496 @code{master} only if they do not break compilation of LilyPond and
1497 its documentation, and in this case they should be pushed to
1498 @code{lilypond/translation} too.  Similarly, changes matching
1499 @code{stable/X.Y} are preferably made on
1500 @code{lilypond/X.Ytranslation}.
1501
1502 @item @code{lilypond/translation} Git branch may be merged into master only if
1503 LilyPond (@command{make all}) and documentation (@command{make web}) compile
1504 succesfully.
1505
1506 @item @code{master} Git branch may be merged into
1507 @code{lilypond/translation} whenever @command{make} and @command{make
1508 web} are succesful (in order to ease documentation compilation by
1509 translators), or when significant changes had been made in
1510 documentation in English in master branch.
1511
1512 @item General maintenance may be done by anybody who knows what he does
1513 in documentation in all languages, without informing translators
1514 first.  General maintenance include simple text substitutions
1515 (e.g. automated by sed), compilation fixes, updating Texinfo or
1516 lilypond-book commands, updating macros, updating ly code, fixing
1517 cross-references, and operations described in @ref{Maintaining
1518 without updating translations}.
1519 @end itemize
1520
1521
1522 @node Technical background
1523 @subsection Technical background
1524
1525 A number of Python scripts handle a part of the documentation
1526 translation process.  All scripts used to maintain the translations
1527 are located in @file{scripts/auxiliar/}.
1528
1529 @itemize
1530 @item @file{check_translation.py}  -- show diff to update a translation,
1531 @item @file{texi-langutils.py}  -- quickly and dirtily parse Texinfo files to
1532 make message catalogs and Texinfo skeleton files,
1533 @item @file{texi-skeleton-update.py} -- update Texinfo skeleton files,
1534 @item @file{update-snippets.py} -- synchronize ly snippets with those
1535 from English docs,
1536 @item @file{translations-status.py} -- update translations status pages and word
1537 counts in the file you are reading,
1538 @item @file{tely-gettext.py} -- gettext node names, section titles and references
1539 in the sources; WARNING only use this script once for each file, when support for
1540 "makeinfo --html" has been dropped.
1541 @end itemize
1542
1543 Other scripts are used in the build process, in @file{scripts/build/}:
1544
1545 @itemize
1546 @item @file{html-gettext.py} -- translate node names, section titles and cross
1547 references in HTML files generated by @command{makeinfo},
1548 @item @file{texi-gettext.py} -- gettext node names, section titles and references
1549 before calling @command{texi2pdf},
1550 @item @file{mass-link.py} -- link or symlink files between English documentation
1551 and documentation in other languages.
1552 @end itemize
1553
1554 Python modules used by scripts in @file{scripts/auxiliar/} or @file{scripts/build/} (but
1555 not by installed Python scripts) are located in @file{python/auxiliar/}:
1556 @itemize
1557 @item @file{manuals_definitions.py} -- define manual names and name of
1558 cross-reference Texinfo macros,
1559 @item @file{buildlib.py} -- common functions (read piped output
1560 of a shell command, use Git),
1561 @item @file{postprocess_html.py} (module imported by @file{www_post.py}) -- add footer and
1562 tweak links in HTML pages.
1563 @end itemize
1564
1565 And finally
1566 @itemize
1567 @item @file{python/langdefs.py}  -- language definitions module
1568 @end itemize