]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/input.itely
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / user / input.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.11.38"
11
12 @node Input syntax
13 @chapter Input syntax
14
15 This section deals with general LilyPond input syntax issues,
16 rather than specific notation.
17
18 FIXME: don't complain about anything in this chapter.  It's still
19 under heavy development.
20
21 FIXME: add comments
22 @verbatim
23 % %{
24 @end verbatim
25 to 3.1.
26
27 @menu
28 * Input files::                 
29 * Common syntax issues TODO name?::  
30 * Other stuffs TODO move?::     
31 @end menu
32
33
34 @node Input files
35 @section Input files
36
37 The main format of input for LilyPond are text files.  By convention,
38 these files end with @code{.ly}.
39
40 @menu
41 * File structure::              
42 * A single music expression::   
43 * Multiple scores in a book::   
44 * Extracting fragments of notation::  
45 * Including LilyPond files::    
46 * Text encoding::               
47 * Different editions from one source::  
48 @end menu
49
50
51 @node File structure
52 @subsection File structure
53
54 A @code{.ly} file contains any number of toplevel expressions, where a
55 toplevel expression is one of the following
56
57 @itemize
58 @item
59 An output definition, such as @code{\paper}, @code{\midi}, and
60 @code{\layout}.  Such a definition at the toplevel changes the default
61 settings for the block entered.
62
63 @item
64 A direct scheme expression, such as
65 @code{#(set-default-paper-size "a7" 'landscape)} or
66 @code{#(ly:set-option 'point-and-click #f)}.
67
68 @item
69 A @code{\header} block.  This sets the global header block.  This
70 is the block containing the definitions for book-wide settings, like
71 composer, title, etc.
72
73 @item
74 A @code{\score} block.  This score will be collected with other
75 toplevel scores, and combined as a single @code{\book}.
76
77 This behavior can be changed by setting the variable
78 @code{toplevel-score-handler} at toplevel.  The default handler is
79 defined in the init file @file{scm/@/lily@/.scm}.
80
81 The @code{\score} must begin with a music expression, and may
82 contain only one music expression.
83
84 @item
85 A @code{\book} block logically combines multiple movements
86 (i.e., multiple @code{\score} blocks) in one document.  If there are
87 a number of @code{\scores}, one output file will be created for
88 each @code{\book} block, in which all corresponding movements are
89 concatenated.  The only reason to explicitly specify @code{\book} blocks
90 in a @code{.ly} file is if you wish multiple output files from a single
91 input file.  One exception is within lilypond-book documents, where you
92 explicitly have to add a @code{\book} block if you want more than a
93 single @code{\score} or @code{\markup} in the same example.
94
95 This behavior can be changed by setting the variable
96 @code{toplevel-book-handler} at toplevel.  The default handler is
97 defined in the init file @file{scm/@/lily@/.scm}.
98
99 @item
100 A compound music expression, such as
101 @example
102 @{ c'4 d' e'2 @}
103 @end example
104
105 This will add the piece in a @code{\score} and format it in a
106 single book together with all other toplevel @code{\score}s and music
107 expressions.  In other words, a file containing only the above
108 music expression will be translated into
109
110 @example
111 \book @{
112   \score @{
113     \new Staff @{
114       \new Voice @{
115         @{ c'4 d' e'2 @}
116       @}
117     @}
118   @}
119         \layout @{ @}
120         \header @{ @}
121 @}
122 @end example
123
124 This behavior can be changed by setting the variable
125 @code{toplevel-music-handler} at toplevel.  The default handler is
126 defined in the init file @file{scm/@/lily@/.scm}.
127
128 @item
129 A markup text, a verse for example
130 @example
131 \markup @{
132    2.  The first line verse two.
133 @}
134 @end example
135
136 Markup texts are rendered above, between or below the scores or music
137 expressions, wherever they appear.
138
139 @cindex variables
140
141 @item
142 An variable, such as
143 @example
144 foo = @{ c4 d e d @}
145 @end example
146
147 This can be used later on in the file by entering @code{\foo}.  The
148 name of an variable should have alphabetic characters only; no
149 numbers, underscores or dashes.
150
151 @end itemize
152
153 The following example shows three things that may be entered at
154 toplevel
155
156 @example
157 \layout @{
158   % movements are non-justified by default
159   ragged-right = ##t
160 @}
161
162 \header @{
163    title = "Do-re-mi"
164 @}
165
166 @{ c'4 d' e2 @}
167 @end example
168
169
170 At any point in a file, any of the following lexical instructions can
171 be entered:
172
173 @itemize
174 @item @code{\version}
175 @item @code{\include}
176 @item @code{\sourcefilename}
177 @item @code{\sourcefileline}
178
179 @end itemize
180
181
182 @node A single music expression
183 @subsection A single music expression
184
185 A @code{\score} must contain a single music expression.  However,
186 this music expression may be of any size.  Recall that music
187 expressions may be included inside other expressions to form
188 larger expressions.  All of these examples are single music
189 expressions; note the curly braces @{ @} or angle brackets <<
190 >> at the beginning and ending of the music.
191
192 @example
193 @{ c'4 c' c' c' @}
194 @end example
195
196 @lilypond[ragged-right,verbatim,quote]
197 {
198   { c'4 c' c' c'}
199   { d'4 d' d' d'}
200 }
201 @end lilypond
202
203 @lilypond[ragged-right,verbatim,quote]
204 <<
205   \new Staff { c'4 c' c' c' }
206   \new Staff { d'4 d' d' d' }
207 >>
208 @end lilypond
209
210 @example
211 @{
212   \new GrandStaff <<
213     \new StaffGroup <<
214       \new Staff @{ \flute @}
215       \new Staff @{ \oboe @}
216     >>
217     \new StaffGroup <<
218       \new Staff @{ \violinI @}
219       \new Staff @{ \violinII @}
220     >>
221   >>
222 @}
223 @end example
224
225
226 @node Multiple scores in a book
227 @subsection Multiple scores in a book
228
229 @funindex \book
230 @cindex movements, multiple
231
232 A document may contain multiple pieces of music and texts.  Examples
233 of these are an etude book, or an orchestral part with multiple
234 movements.  Each movement is entered with a @code{\score} block,
235
236 @example
237 \score @{
238   @var{..music..}
239 @}
240 @end example
241
242 and texts are entered with a @code{\markup} block,
243
244 @example
245 \markup @{
246   @var{..text..}
247 @}
248 @end example
249
250 @funindex \book
251
252 All the movements and texts which appear in the same @code{.ly} file 
253 will normally be typeset in the form of a single output file. 
254
255 @example
256 \score @{
257   @var{..}
258 @}
259 \markup @{
260   @var{..}
261 @}
262 \score @{
263   @var{..}
264 @}
265 @end example
266
267 However, if you want multiple output files from the same @code{.ly}
268 file, then you can add multiple @code{\book} blocks, where each such
269 @code{\book} block will result in a separate output.  If you do not
270 specify any @code{\book} block in the file, LilyPond will implicitly
271 treat the full file as a single @code{\book} block, see @ref{File
272 structure}.  One important exception is within lilypond-book documents,
273 where you explicitly have to add a @code{\book} block, otherwise only
274 the first @code{\score} or @code{\markup} will appear in the output.
275
276 The header for each piece of music can be put inside the @code{\score}
277 block.  The @code{piece} name from the header will be printed before
278 each movement.  The title for the entire book can be put inside the
279 @code{\book}, but if it is not present, the @code{\header} which is at
280 the top of the file is inserted.
281
282 @example
283 \header @{
284   title = "Eight miniatures"
285   composer = "Igor Stravinsky"
286 @}
287 \score @{
288   @dots{}
289   \header @{ piece = "Romanze" @}
290 @}
291 \markup @{
292    ..text of second verse..
293 @}
294 \markup @{
295    ..text of third verse..
296 @}
297 \score @{
298   @dots{}
299   \header @{ piece = "Menuetto" @}
300 @}
301 @end example
302
303 @node Extracting fragments of notation
304 @subsection Extracting fragments of notation
305
306 It is possible to quote small fragments of a large score directly from
307 the output.  This can be compared to clipping a piece of a paper score
308 with scissors.
309
310 This is done by defining the measures that need to be cut out
311 separately.  For example, including the following definition
312
313
314 @verbatim
315 \layout {
316   clip-regions
317   = #(list
318       (cons
319        (make-rhythmic-location 5 1 2)
320        (make-rhythmic-location 7 3 4)))
321 }       
322 @end verbatim
323
324 @noindent
325 will extract a fragment starting halfway the fifth measure, ending in
326 the seventh measure.  The meaning of @code{5 1 2} is: after a 1/2 note
327 in measure 5, and @code{7 3 4} after 3 quarter notes in measure 7.
328
329 More clip regions can be defined by adding more pairs of
330 rhythmic-locations to the list. 
331
332 In order to use this feature, LilyPond must be invoked with
333 @code{-dclip-systems}.  The clips are output as EPS files, and are
334 converted to PDF and PNG if these formats are switched on as well.
335
336 For more information on output formats, see @rprogram{Invoking LilyPond}.
337
338
339 @node Including LilyPond files
340 @subsection Including LilyPond files
341
342 @funindex \include
343 @cindex including files
344
345 A large project may be split up into separate files.  To refer to another
346 file, use
347
348 @example
349 \include "otherfile.ly"
350 @end example
351
352 The line @code{\include "file.ly"} is equivalent to pasting the contents
353 of file.ly into the current file at the place where you have the
354 \include.  For example, for a large project you might write separate files
355 for each instrument part and create a @q{full score} file which brings
356 together the individual instrument files.
357
358 The initialization of LilyPond is done in a number of files that are
359 included by default when you start the program, normally transparent to the
360 user.  Run @code{lilypond --verbose} to see a list of paths and files that Lily
361 finds.
362
363 Files placed in directory @file{PATH/TO/share/lilypond/VERSION/ly/} (where
364 VERSION is in the form @q{2.6.1}) are on the path and available to
365 @code{\include}.  Files in the
366 current working directory are available to \include, but a file of the same
367 name in LilyPond's installation takes precedence.  Files are
368 available to \include from directories in the search path specified as an
369 option when invoking @code{lilypond --include=DIR} which adds DIR to the
370 search path.
371
372 The @code{\include} statement can use full path information, but with the UNIX
373 convention @code{/} rather than the DOS/Windows @code{\}.  For example,
374 if @file{stuff.ly} is located one directory higher than the current working
375 directory, use
376
377 @example
378 \include "../stuff.ly"
379 @end example
380
381
382 @node Text encoding
383 @subsection Text encoding
384
385 LilyPond uses the Pango library to format multi-lingual texts, and
386 does not perform any input-encoding conversions.  This means that any
387 text, be it title, lyric text, or musical instruction containing
388 non-ASCII characters, must be utf-8.  The easiest way to enter such text is
389 by using a Unicode-aware editor and saving the file with utf-8 encoding.  Most
390 popular modern editors have utf-8 support, for example, vim, Emacs,
391 jEdit, and GEdit do.
392
393 @c  Currently not working
394 @ignore
395 Depending on the fonts installed, the following fragment shows Hebrew
396 and Cyrillic lyrics,
397
398 @cindex Cyrillic
399 @cindex Hebrew
400 @cindex ASCII, non
401
402 @li lypondfile[fontload]{utf-8.ly}
403
404 The @TeX{} backend does not handle encoding specially at all.  Strings
405 in the input are put in the output as-is.  Extents of text items in the
406 @TeX{} backend, are determined by reading a file created via the
407 @file{texstr} backend,
408
409 @example
410 lilypond -dbackend=texstr input/les-nereides.ly
411 latex les-nereides.texstr
412 @end example
413
414 The last command produces @file{les-nereides.textmetrics}, which is
415 read when you execute
416
417 @example
418 lilypond -dbackend=tex input/les-nereides.ly
419 @end example
420
421 Both @file{les-nereides.texstr} and @file{les-nereides.tex} need
422 suitable LaTeX wrappers to load appropriate La@TeX{} packages for
423 interpreting non-ASCII strings.
424
425 @end ignore
426
427 To use a Unicode escape sequence, use
428
429 @example
430 #(ly:export (ly:wide-char->utf-8 #x2014))
431 @end example
432
433
434 @node Different editions from one source
435 @subsection Different editions from one source
436
437 @funindex \tag
438 @cindex tag
439
440 The @code{\tag} command marks music expressions with a name.  These
441 tagged expressions can be filtered out later.  With this mechanism it
442 is possible to make different versions of the same music source.
443
444 In the following example, we see two versions of a piece of music, one
445 for the full score, and one with cue notes for the instrumental part
446
447 @example
448 c1
449 <<
450   \tag #'part <<
451     R1 \\
452     @{
453       \set fontSize = #-1
454       c4_"cue" f2 g4 @}
455   >>
456   \tag #'score R1
457 >>
458 c1
459 @end example
460
461 The same can be applied to articulations, texts, etc.: they are
462 made by prepending
463 @example
464 -\tag #@var{your-tag}
465 @end example
466 to an articulation, for example,
467 @example
468 c1-\tag #'part ^4
469 @end example
470
471 This defines a note with a conditional fingering indication.
472
473 @cindex keepWithTag
474 @cindex removeWithTag
475 By applying the @code{\keepWithTag} and @code{\removeWithTag}
476 commands, tagged expressions can be filtered.  For example,
477 @example
478 <<
479   @var{the music}
480   \keepWithTag #'score @var{the music}
481   \keepWithTag #'part @var{the music}
482 >>
483 @end example
484 would yield
485
486 @c FIXME: broken
487 @c @lilypondfile[ragged-right,quote]{tag-filter.ly}
488
489 The arguments of the @code{\tag} command should be a symbol
490 (such as @code{#'score} or @code{#'part}), followed by a
491 music expression.  It is possible to put multiple tags on
492 a piece of music with multiple @code{\tag} entries,
493
494 @example
495   \tag #'original-part \tag #'transposed-part @dots{}
496 @end example
497
498
499 @knownissues
500
501 Multiple rests are not merged if you create the score with both tagged
502 sections.
503
504
505 @node Common syntax issues TODO name?
506 @section Common syntax issues TODO name?
507
508 @menu
509 * Controlling direction and placement::  
510 * Distances and measurements MAYBE MOVE::  
511 * When to add a -::             
512 @end menu
513
514 @node Controlling direction and placement
515 @subsection Controlling direction and placement
516
517 TODO: everything
518
519 By default, LilyPond does a pretty jazz'n job of picking
520 directions.  But in some cases, it may be desirable to force a
521 direction.
522
523 @verbatim
524 -
525 ^ _
526 @end verbatim
527
528 Also cover
529 #UP
530 #DOWN
531 #LEFT
532 #RIGHT.
533
534 Maybe rename section to "directions".
535
536 Also mention \override Foo #'direction = #'DOWN.
537
538 also mention the typical \fooDown, \fooNeutral predefined commands.
539
540 also mention that some directions are (without other tweaking)
541 always up or always down (like dynamics or fermata), while other
542 things can alternate between up or down based on the stem direction
543 (like slurs or accents).
544
545
546 @node Distances and measurements MAYBE MOVE
547 @subsection Distances and measurements MAYBE MOVE
548
549 DISCUSS after working on other sections.
550
551 TODO: staff spaces, #UP #DOWN #LEFT #RIGHT.  Maybe move into tweaks?
552
553
554 @node When to add a -
555 @subsection When to add a -
556
557 One of these works, the other doesn't.
558
559 @verbatim
560 \version "2.11.38"
561 { c'\mp\fermata\accent-\markup { "forcefully"} }
562 % { c'\mp\fermata\accent\markup { "forcefully"} }
563 @end verbatim
564
565
566 @node Other stuffs TODO move?
567 @section Other stuffs TODO move?
568
569
570 @menu
571 * Displaying LilyPond notation::  
572 * Skipping corrected music::    
573 * context list FIXME::          
574 * another thing FIXME::         
575 * Input modes FIXME::           
576 @end menu
577
578 @node Displaying LilyPond notation
579 @subsection Displaying LilyPond notation
580
581 @funindex \displayLilyMusic
582 Displaying a music expression in LilyPond notation can be
583 done using the music function @code{\displayLilyMusic}.  For example,
584
585 @example
586 @{
587   \displayLilyMusic \transpose c a, @{ c e g a bes @}
588 @}
589 @end example
590
591 will display
592
593 @example
594 @{ a, cis e fis g @}
595 @end example
596
597 By default, LilyPond will print these messages to the console along
598 with all the other messages.  To split up these messages and save
599 the results of @code{\display@{STUFF@}}, redirect the output to
600 a file.
601
602 @example
603 lilypond file.ly >display.txt
604 @end example
605
606
607 @node Skipping corrected music
608 @subsection Skipping corrected music
609
610
611 @funindex skipTypesetting
612 @funindex showLastLength
613
614 When entering or copying music, usually only the music near the end (where
615 you
616 are adding notes) is interesting to view and correct.  To speed up
617 this correction process, it is possible to skip typesetting of all but
618 the last few measures.  This is achieved by putting
619
620 @verbatim
621 showLastLength = R1*5
622 \score { ... }
623 @end verbatim
624
625 @noindent
626 in your source file.  This will render only the last 5 measures
627 (assuming 4/4 time signature) of every @code{\score} in the input
628 file.  For longer pieces, rendering only a small part is often an order
629 of magnitude quicker than rendering it completely
630
631 Skipping parts of a score can be controlled in a more fine-grained
632 fashion with the property @code{Score.skipTypesetting}.  When it is
633 set, no typesetting is performed at all.
634
635 This property is also used to control output to the MIDI file.  Note that
636 it skips all events, including tempo and instrument changes.  You have
637 been warned.
638
639 @lilypond[quote,fragment,ragged-right,verbatim]
640 \relative c'' {
641   c8 d
642   \set Score.skipTypesetting = ##t
643   e e e e e e e e
644   \set Score.skipTypesetting = ##f
645   c d b bes a g c2 }
646 @end lilypond
647
648 In polyphonic music, @code{Score.skipTypesetting} will affect all
649 voices and staves, saving even more time.
650
651
652 @node context list FIXME
653 @subsection context list FIXME
654
655 >> > > - list of contexts: my *danger unmaintainable* 
656 >> > > alarm just went off.  I'm 
657
658 I knew it would... And leaving out some of them is perfectly fine
659 with me.
660 I do think that a list like this, with the main contexts and a
661 brief
662 description of  what they do (perhaps also with a note about what
663 default
664 behavior is associated with each of them, but this may be
665 unmanageable),
666 should be there, and then we could simply list the remaining ones
667 without
668 further explanation and with links to the IR.
669
670
671 The Master Of All Contexts
672 ==========================
673
674     * Score
675         This is the top level notation context. No other context
676 can
677         contain a Score context. This context handles the
678         administration of time signatures. It also makes sure that
679         items such as clefs, time signatures, and key-signatures
680 are
681         aligned across staves.
682         You cannot explicitly instantiate a Score context (since
683 it is
684         not contained in any other context). It is instantiated
685         automatically when an output definition (a \score or
686 \layout
687         block) is processed. 
688         (it should also be made clear somewhere what the
689 difference is between
690         \score and \Score).
691
692 Top-level contexts: Staff containers
693 ====================================
694     * StaffGroup
695         Groups staves while adding a bracket on the left side,
696         grouping the staves together. The bar lines of the
697 contained
698         staves are connected vertically. StaffGroup only consists
699 of a
700         collection of staves, with a bracket in front and spanning
701 bar
702         lines.
703     * ChoirStaff
704         Identical to StaffGroup except that the contained staves
705 are
706         not connected vertically.
707     * GrandStaff
708         A group of staves, with a brace on the left side, grouping
709 the
710         staves together. The bar lines of the contained staves are
711         connected vertically.
712     * PianoStaff
713         Just like GrandStaff but with a forced distance between
714 the
715         staves, so cross staff beaming and slurring can be used.
716     * DrumStaff
717         Handles typesetting for percussion. Can contain DrumVoice
718     * InnerStaffGroup
719     * InnerChoirStaff
720
721 Staff-level contexts
722 ====================
723     * Staff
724         Handles clefs, bar lines, keys, accidentals. It can
725 contain
726         Voice contexts.
727     * RhythmicStaff
728         Like Staff but for printing rhythms. Pitches are
729         ignored; the notes are printed on one line.
730     * TabStaff
731         Context for generating tablature. By default lays the
732 music
733         expression out as a guitar tablature, printed on six
734 lines.
735     * VaticanaStaff
736         Same as Staff, except that it is accommodated for
737         typesetting a piece in gregorian style. 
738     * MensuralStaff
739         Same as Staff, except that it is accommodated for
740         typesetting a piece in mensural style. 
741
742 Voice-level (bottom) contexts
743 =============================
744 What is generated by default here?  The voice-level contexts
745 initiate
746 certain properties and start engravers. 
747
748     * Voice 
749         Corresponds to a voice on a staff. This context handles
750 the
751         conversion of dynamic signs, stems, beams, super- and
752         subscripts, slurs, ties, and rests.
753         You have to instantiate this explicitly if you want to
754 have
755         multiple voices on the same staff. 
756         Bottom context.
757     * VaticanaVoice
758         Same as Voice, except that it is accommodated for
759         typesetting a piece in gregorian style.  
760     * MensuralVoice
761         Same as Voice, except that it is accommodated for
762         typesetting a piece in mensural style. 
763     * Lyrics
764         Corresponds to a voice with lyrics. Handles the printing
765 of a
766         single line of lyrics.
767         Bottom context.
768     * DrumVoice
769         A voice on a percussion staff.
770     * FiguredBass
771          
772     * ChordNames
773         Typesets chord names.  This context is a `bottom' context;
774 it
775         cannot contain other contexts.
776
777 ------------------------------
778 Then the following, which I don't know what to do with:
779
780     * TabVoice
781     * GregorianTranscriptionVoice
782     * GregorianTranscriptionStaff
783
784     * FretBoards
785         Engraves fretboards from chords. Not easy... Not
786 documented.
787     * NoteNames
788
789     * CueVoice Not documented
790     * Global
791         Hard coded entry point for LilyPond. Cannot be tuned.
792     * Devnull
793         Silently discards all musical information given to this
794 context.
795
796
797 @node another thing FIXME
798 @subsection another thing FIXME
799
800 Another thing that is needed, is an overview of the various naming
801 conventions: 
802
803     scheme functions: lowercase-with-hyphens (incl. one-word
804 names)
805     scheme functions: ly:plus-scheme-style
806     music events, music classes and music properties:
807 as-scheme-functions
808     Grob interfaces: scheme-style
809     backend properties: scheme-style (but X and Y!)
810     contexts (and MusicExpressions and grobs): Capitalized or
811 CamelCase
812     context properties: lowercaseFollowedByCamelCase
813     engravers:
814 Capitalized_followed_by_lowercase_and_with_underscores
815
816 Which of these are conventions and which are rules?
817 Which are rules of the underlying language, and which are
818 LP-specific?
819
820
821 @node Input modes FIXME
822 @subsection Input modes FIXME
823
824 \notemode
825
826 \notemode turns the front end of LilyPond into note mode
827 (which is the default parsing mode).
828 It's certainly useful in certain situations, for example if you
829 are in \lyricmode or \chordmode or ... and want to insert
830 something that only can be done with \notemode syntax.
831
832 See for example
833 http://lists.gnu.org/archive/html/lilypond-user/2007-03/msg00418.html
834 http://lists.gnu.org/archive/html/lilypond-user/2007-03/msg00218.html
835 http://lists.gnu.org/archive/html/lilypond-user/2006-12/msg00236.html
836 http://lists.gnu.org/archive/html/lilypond-user/2006-11/msg00061.html
837
838
839 \chords
840 \drums
841 \fretmode ?
842
843