LEFT | RIGHT |
(no file at all) | |
1 @c -*- coding: utf-8; mode: texinfo; -*- | 1 @c -*- coding: utf-8; mode: texinfo; -*- |
2 @ignore | 2 @ignore |
3 Translation of GIT committish: FILL-IN-HEAD-COMMITTISH | 3 Translation of GIT committish: FILL-IN-HEAD-COMMITTISH |
4 | 4 |
5 When revising a translation, copy the HEAD committish of the | 5 When revising a translation, copy the HEAD committish of the |
6 version that you are working on. For details, see the Contributors' | 6 version that you are working on. For details, see the Contributors' |
7 Guide, node Updating translation committishes.. | 7 Guide, node Updating translation committishes.. |
8 @end ignore | 8 @end ignore |
9 | 9 |
10 @c \version "2.19.29" | 10 @c \version "2.20.0" |
11 | 11 |
12 | 12 |
13 @node Simultaneous notes | 13 @node Simultaneous notes |
14 @section Simultaneous notes | 14 @section Simultaneous notes |
15 | 15 |
16 @lilypondfile[quote,ragged-right,line-width=16\cm]{simultaneous-headword.ly} | 16 @lilypondfile[quote,ragged-right,line-width=16\cm]{simultaneous-headword.ly} |
17 | 17 |
18 Polyphony in music refers to having more than one voice occurring | 18 Polyphony in music refers to having more than one voice occurring |
19 in a piece of music. Polyphony in LilyPond refers to having more | 19 in a piece of music. Polyphony in LilyPond refers to having more |
20 than one voice on the same staff. | 20 than one voice on the same staff. |
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 << | 923 << |
924 \new Staff \with { | 924 \new Staff \with { |
925 instrumentName = "unmerged" | 925 instrumentName = "unmerged" |
926 } | 926 } |
927 << | 927 << |
928 \new Voice { \voiceOne \voiceA } | 928 \new Voice { \voiceOne \voiceA } |
929 \new Voice { \voiceTwo \voiceB } | 929 \new Voice { \voiceTwo \voiceB } |
930 >> | 930 >> |
931 \new Staff \with { | 931 \new Staff \with { |
932 instrumentName = "merged" | 932 instrumentName = "merged" |
933 \consists #Merge_rests_engraver | 933 \consists "Merge_rests_engraver" |
934 } | 934 } |
935 << | 935 << |
936 \new Voice { \voiceOne \voiceA } | 936 \new Voice { \voiceOne \voiceA } |
937 \new Voice { \voiceTwo \voiceB } | 937 \new Voice { \voiceTwo \voiceB } |
938 >> | 938 >> |
939 >> | 939 >> |
940 } | 940 } |
941 @end lilypond | 941 @end lilypond |
942 | 942 |
943 Setting the context property @code{suspendRestMerging} to @code{##t} allows for | 943 Setting the context property @code{suspendRestMerging} to @code{##t} allows for |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 >> | 1298 >> |
1299 } | 1299 } |
1300 @end lilypond | 1300 @end lilypond |
1301 | 1301 |
1302 @seealso | 1302 @seealso |
1303 Learning Manual: | 1303 Learning Manual: |
1304 @rlearning{Organizing pieces with variables}. | 1304 @rlearning{Organizing pieces with variables}. |
1305 | 1305 |
1306 Snippets: | 1306 Snippets: |
1307 @rlsr{Simultaneous notes}. | 1307 @rlsr{Simultaneous notes}. |
LEFT | RIGHT |