]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-names.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / note-names.ly
1 \version "2.19.38"
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 pitchnames))
22   bes4 a g fis
23
24   %% The \language command acts in the same way:
25   \language "français"
26   %% Accented characters are supported in some languages:
27   sol4 fa mib ré
28 }