Re: how to get h instead of b in notenames

2014-11-04 Thread SoundsFromSound
Stefan Thomas-5 wrote Dear community, in the below quoted snippet I get b instead of the german h. How can I achieve it? \version 2.18.2 \language deutsch onthelines = \relative e' { e1 g h d f } \score { \new Staff \onthelines \new NoteNames \onthelines }

Re: how to get h instead of b in notenames

2014-11-04 Thread Martin Tarenskeen
On Tue, 4 Nov 2014, Stefan Thomas wrote: Dear community, in the below quoted snippet I get b instead of the german h. How can I achieve it? \version 2.18.2 \language deutsch onthelines = \relative e' { e1 g h d f } \score { \new Staff \onthelines \new NoteNames \onthelines }

Re: how to get h instead of b in notenames

2014-11-04 Thread Noeck
\version 2.18.2 \language deutsch onthelines = \relative e' { e1 g h d f } \score { \new Staff \onthelines \new NoteNames \onthelines I'm confused, I thought the German include was setup something like deutsch.ly = c d e f g a b h The input is valid with \language deutsch and

Re: how to get h instead of b in notenames

2014-11-04 Thread Federico Bruni
2014-11-04 9:42 GMT+01:00 Noeck noeck.marb...@gmx.de: The input is valid with \language deutsch and the notes in the Staff are correct. But the NoteNames show the letter b below the 3rd note which is called h in German. He wants the letter h there. Just to clarify what I think Stefan Thomas

Re: how to get h instead of b in notenames

2014-11-04 Thread Jay Vara
Apparently, in the NoteNames context it defaults to Dutch. You can use the following code to get what you want I think. b has been redefined to h in the definition of newnames and the myNoteNames override to NoteName.stencil makes this substitution. %%% \version

Re: how to get h instead of b in notenames

2014-11-04 Thread Stefan Thomas
Dear Jay, thanks! The code does exactly what I want! Apparently, in the NoteNames context it defaults to Dutch. You can use the following code to get what you want I think. b has been redefined to h in the definition of newnames and the myNoteNames override to NoteName.stencil makes this

how to get h instead of b in notenames

2014-11-03 Thread Stefan Thomas
Dear community, in the below quoted snippet I get b instead of the german h. How can I achieve it? \version 2.18.2 \language deutsch onthelines = \relative e' { e1 g h d f } \score { \new Staff \onthelines \new NoteNames \onthelines } ___