Re: Changing pedal symbol

2016-05-01 Thread tisimst
Michiel, On Sunday, May 1, 2016, Michiel Sikma-2 [via Lilypond] < ml-node+s1069038n190296...@n5.nabble.com> wrote: > Hi there, > > I've been looking at what's contained in the font, and found a simplified > pedal symbol (pedal.P, as seen here >

Changing pedal symbol

2016-05-01 Thread Michiel Sikma
Hi there, I've been looking at what's contained in the font, and found a simplified pedal symbol (pedal.P, as seen here ). I wanted to see how it looks in my score, so I constructed a small snippet to try and figure

Re: implicitly running a lilypond script through a python script before compilation

2016-05-01 Thread Joseph Chrestien
> Yes, see this thread in the german forum > http://www.lilypondforum.de/index.php?topic=2087.0 discussed are different possibilities: > (1) python from within a lilyfile.ly: Yay, it works! I have "Hello world" in the log, which is already great. However, I can't find yet whether I have some

Re: Scoring song with multiple sections (with min example)

2016-05-01 Thread Henry Law
On 01/05/16 22:46, Thomas Morley wrote: \new Lyrics = "first" \lyricsto "voiceOneTwo" { this is verse one } \new Lyrics = "second" \lyricsto "voiceOneTwo" { this is verse two } \context Lyrics = "first" \lyricsto "bridgeVoice" { this is the bridge } \context Lyrics = "first"

Re: implicitly running a lilypond script through a python script before compilation

2016-05-01 Thread Thomas Morley
2016-05-01 22:48 GMT+02:00 Joseph Chrestien <_...@live.com>: > Hi all, > > I know this is going to sound strange: is it possible (or even imaginable) to > run a Python code snippet from "within" Lilypond code at compile time? Yes, see this thread in the german forum

Re: Installing lilypond-mode in emacs

2016-05-01 Thread David Sumbler
On Sun, 2016-05-01 at 14:13 -0700, David Bellows wrote: > > > > I have just installed Ubuntu 16.04 to replace my previous 12.04 > > system, > > and installed LilyPond v.2.19.40. > > > > In my ~/.emacs file I already had > Here's my .emacs file for Kubuntu 16.04: > > > (setq load-path (append

Re: Scoring song with multiple sections (with min example)

2016-05-01 Thread Thomas Morley
2016-05-01 22:58 GMT+02:00 Henry Law : > On 01/05/16 19:09, Noeck wrote: >> >> a minimal working example would get you more help > > > Yes, sorry; I should have done that to start with. Thanks to your I'm > nearly there. This example ... > > % > \version "2.18.2" > >

Re: Installing lilypond-mode in emacs

2016-05-01 Thread David Bellows
> I have just installed Ubuntu 16.04 to replace my previous 12.04 system, > and installed LilyPond v.2.19.40. > In my ~/.emacs file I already had Here's my .emacs file for Kubuntu 16.04: (setq load-path (append (list (expand-file-name "/usr/local/lilypond/usr/share/emacs/site-lisp"))

implicitly running a lilypond script through a python script before compilation

2016-05-01 Thread Joseph Chrestien
Hi all, I know this is going to sound strange: is it possible (or even imaginable) to run a Python code snippet from "within" Lilypond code at compile time? This is my situation: I am currently using a custom extension of the "Column markup" Frescobaldi snippet, to print verses below a staff.

Re: subdivide beams (the correct way)?

2016-05-01 Thread Urs Liska
Am 01.05.2016 um 22:51 schrieb Nik Repka: > I am having trouble getting Lilypond to subdivide beams correctly. The > default in 2/4 is to beam 32nd notes in groups of 8 (quarter notes). I can > set subdivide beams to true and change the baseMoment to 1/8 to get the > correct subdivision of

Re: Scoring song with multiple sections (with min example)

2016-05-01 Thread Henry Law
On 01/05/16 19:09, Noeck wrote: a minimal working example would get you more help Yes, sorry; I should have done that to start with. Thanks to your I'm nearly there. This example ... % \version "2.18.2" \score { << \new ChordNames { c2 c } \new Staff = "melodyStaff" {

subdivide beams (the correct way)?

2016-05-01 Thread Nik Repka
I am having trouble getting Lilypond to subdivide beams correctly. The default in 2/4 is to beam 32nd notes in groups of 8 (quarter notes). I can set subdivide beams to true and change the baseMoment to 1/8 to get the correct subdivision of 32nd notes (4+4 under one beam). But then the 16ths

Installing lilypond-mode in emacs

2016-05-01 Thread David Sumbler
I have just installed Ubuntu 16.04 to replace my previous 12.04 system, and installed LilyPond v.2.19.40. In my ~/.emacs file I already had (autoload 'LilyPond-mode "lilypond-mode") (setq auto-mode-alist (cons '("\\.ily$" . LilyPond-mode) auto-mode-alist)) (add-hook 'LilyPond-mode-hook (lambda

Displaying Japanese & Chinese characters.

2016-05-01 Thread ming
James, In your editor select UTF-8 and lily support UTF-code. This will display Chinese character. I have been using this since lilypond v2.12. Immanuel, Ming Sent from Mail for Windows 10 ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Scoring song with multiple sections

2016-05-01 Thread Noeck
Hi Henry, a minimal working example would get you more help, i.e. one without undefined variables like \verseOne but rather some dummy notes that work for everyone. If I understand what you want, you want the two voices to be in the same staff, one after the other. Then this might help you. Here

Re: Displaying Japanese & Chinese characters.

2016-05-01 Thread Rafael Ramirez Morales
On 1 May 2016 at 18:52, Thomas Morley wrote: > 2016-05-01 15:51 GMT+02:00 James Sa : >> I bump into a problem that I cannot render CJVK characters correctly. >> >> === Here's the tiny sample === >> \version "2.19.40" >> >> \header { >> title =

Re: Scoring song with multiple sections

2016-05-01 Thread Henry Law
On 01/05/16 17:32, Malte Meyn wrote: \score { { << \new Staff = "first" a \new Staff = "second" b >> << \context Staff = "first" f \context Staff = "second" g >> } } Thank you; that's got me slightly further forward, although your example

Re: Displaying Japanese & Chinese characters.

2016-05-01 Thread Thomas Morley
2016-05-01 15:51 GMT+02:00 James Sa : > I bump into a problem that I cannot render CJVK characters correctly. > > === Here's the tiny sample === > \version "2.19.40" > > \header { > title = "標題" % Use only English is fine. CJVK seems broken. > } > > \score { > \new

Re: Scoring song with multiple sections

2016-05-01 Thread Malte Meyn
Am 01.05.2016 um 17:29 schrieb Henry Law: But on the second appearance of "<<" Lily barfs with "syntax error, unexpected <<". Every \score can contain only one music expression but you did something like % \version "2.18.2" \score { << \new Staff a \new Staff b >> <<

Re: Replying to posts

2016-05-01 Thread Werner LEMBERG
> My Titanium Internet Security blocks this site as a "Dangerous Page." Hmm. Google doesn't do any warning... Looking into the .msi file to download, everything looks right (but I'm not the right person to investigate such issues). Werner ___

Scoring song with multiple sections

2016-05-01 Thread Henry Law
(Lilypond v2.18.2 under Linux.) I'm scoring a song which has the form A A B C C. Two verses go to section A, then there are words for a bridge, then two more verses to the music of section C. Or to put it graphically Chords to section A Notes of section A Verse 1 words Verse 2 words

Displaying Japanese & Chinese characters.

2016-05-01 Thread James Sa
I bump into a problem that I cannot render CJVK characters correctly. === Here's the tiny sample === \version "2.19.40" \header { title = "標題" % Use only English is fine. CJVK seems broken. } \score { \new Staff { } } === Here's the output === %{ Starting lilypond 2.19.40

Re: Choice of pitch input mode

2016-05-01 Thread Paul Morris
> On May 1, 2016, at 8:38 AM, Paul Morris wrote: > > I just tried it and it requires the explicit reference pitch like: \fixed > c’’ { … } …and that makes sense because the first note may not be in the base octave. -Paul ___

Re: Choice of pitch input mode

2016-05-01 Thread Paul Morris
> On May 1, 2016, at 3:46 AM, Johan Vromans wrote: > > Can this also be written as: > > \fixed { > \key a \major > \time 6/8 > cis''8. d16 cis8 e4 e8 | > b,8. cis16 b,8 d4 d8 | > } > > just like \relative? No, I just tried it and it requires the explicit reference

RE: Replying to posts

2016-05-01 Thread Mark Stephen Mrotek
Werner, My Titanium Internet Security blocks this site as a "Dangerous Page." Mark -Original Message- From: lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Werner LEMBERG Sent: Thursday, April 28, 2016 10:27 PM To: andrew.bern...@gmail.com Cc:

Re: Choice of pitch input mode

2016-05-01 Thread Johan Vromans
On Sat, 30 Apr 2016 17:22:27 -0400 Paul Morris wrote: > \fixed c'' { > \key a \major > \time 6/8 > cis8. d16 cis8 e4 e8 | > b,8. cis16 b,8 d4 d8 | > } Can this also be written as: \fixed { \key a \major \time 6/8 cis''8. d16 cis8 e4 e8 | b,8. cis16 b,8 d4