]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-names.ly
Web-fr: Web: use free software and mention that we're part of GNU
[lilypond.git] / input / regression / note-names.ly
1
2 \header
3 {
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 \version "2.13.37"
11
12 \include "english.ly"
13
14 \relative c'' {
15   g bf d c
16
17   %% nederlands.ly is loaded by default, so the
18   %% dutchPitchnames variable is already defined.
19   #(begin
20     (set! pitchnames dutchPitchnames)
21     (ly:parser-set-note-names parser dutchPitchnames))
22   bes a g fis
23
24   %% The \language command just retrieves a pitches alist
25   %% from the relevant file, and sets pitchnames accordingly.
26   \language "italiano"
27   sol fa mib re
28 }