]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-names.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / note-names.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "Various languages are supported for note names input.
5 Selecting another language within a music expression is possible,
6 and doesn't break point-and-click abilities.
7 "
8 }
9
10
11 %% Old syntax.
12 \include "english.ly"
13
14 \relative {
15   g'4 bf d c
16
17   %% Manual override of the pitchnames variable
18   %% and the parser note names:
19   #(begin
20     (set! pitchnames (ly:assoc-get 'nederlands language-pitch-names))
21     (ly:parser-set-note-names parser pitchnames))
22   bes4 a g fis
23
24   %% The \language command acts in the same way:
25   \language "italiano"
26   sol4 fa mib re
27 }