Re: Simple scheme function

2020-04-01 Thread Павел Буданов
Amazing, thank you! чт, 2 апр. 2020 г. в 01:12, Aaron Hill : > On 2020-04-01 3:04 pm, Павел Буданов wrote: > > Hello, I'm newbie in scheme. I want to write simple function to > > octavize > > melody, but something doesn't works... > > > > > >

Simple scheme function

2020-04-01 Thread Павел Буданов
Hello, I'm newbie in scheme. I want to write simple function to octavize melody, but something doesn't works... \version "2.20.0" octavize = #(define-music-function (parser location music) (ly:music?) #{ << #music \transpose c c' #music >> #}) music = { c' d' e' f' } \markup "Need:" \ne

\magnifyMusic bug

2020-03-22 Thread Павел Буданов
\magnifyMusic does not affect to new voices (see the example below). If it is a normal behavior then why \magnifyMusic requires curly braces? It would be more logical to do this as \voiceOne etc. commands (without curly braces). \version "2.20.0" \relative c' { \magnifyMusic 0.5 { c d e f \new

musicxml2ly 2.20 bug

2020-03-22 Thread Павел Буданов
I tried to use musicxml2ly from official repository of manjaro linux and get this output: Traceback (most recent call last): File "/usr/bin/musicxml2ly", line 44, in import lilylib as ly ImportError: No module named lilylib Then I tried to install lilypond from official cite via shell script

Unexpected "Merge_rests_engraver" behavior

2020-03-10 Thread Павел Буданов
See the vertical position of multimeasure rest. ```lilypond \version "2.19.83" \new Staff \with { \consists "Merge_rests_engraver" } << { R1 r1 } \\ { R1 r1 } >> ```

Specifying a font directly via a path?

2020-02-26 Thread Павел Буданов
How can I specify a font directly via a path? For example, I want something like this to work: \override LyricText.font-name = "./fonts/MyFont.otf"

Using "\set associatedVoice" in deferrely created contexts

2019-11-23 Thread Павел Буданов
Hi, I want to automatically align syllables in deferrely created lyrics context. Why the following example doesn't work? << \new Staff \new Voice = "voice" { b b b b b b b b b b b b } \new Lyrics { s1 \new Lyrics \lyricmode { \set associatedVoice = #"voice" la la la la } } >> B

Full measure rests does not display in partial measure

2019-11-19 Thread Павел Буданов
<< { \partial 4*3 b b b b b b b } \\ { R1*3/4 R1 } >> How to solve subject problem? I did not find the answer in the archive.

Re: warning message - missing slur

2019-04-13 Thread Павел Буданов
Use the phrasing slurs: \fixed c' { <<{f4 e8 c8~\( c4 e8( f8) \)}\\{f4 e8 c~ 4~ 4}>> |} For more information see the slurs page in the learning manual. вс, 14 апр. 2019 г. в 02:57, MING TSANG : > Lilyponders: > > I have the fol

Re: Simple example with vertical spacing and dynamic contexts

2019-03-18 Thread Павел Буданов
Thank you very much, Ben. If this helps someone, I could use this solution to adjust the vertical distance of the lyrics: дꙋй -- \markup { сѧ, \transparent \draw-line #'(0 . -1) } ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/

Re: Simple example with vertical spacing and dynamic contexts

2019-03-11 Thread Павел Буданов
ow note to push the staffs. c'4*1/2 \once \hideNotes c,8 c'4 c' c' } \new Staff { c' c' c' c' c' c' c' c' } >> вт, 5 мар. 2019 г. в 21:07, Павел Буданов : > How to control vertical spacing in the middle of a piece? &g

Re: Simple example with vertical spacing and dynamic contexts

2019-03-05 Thread Павел Буданов
% It isn't work c' c' c' c' } \new Staff { c' c' c' c' c' c' c' c' } >> пт, 1 февр. 2019 г. в 11:41, Павел Буданов : > It really helped me, I am very grateful to you. Would you like to change > the vertical spacin

How to decrase the inbeam space

2019-03-02 Thread Павел Буданов
Or is there any command for automatic scaling notes with all elements including beams?___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: A strange behaivor of autobeaming

2019-02-05 Thread Павел Буданов
Thank you for the detailed explanation. вт, 5 февр. 2019 г. в 13:31, Urs Liska : > > Am 04.02.19 um 20:53 schrieb Павел Буданов: > > Hello everybody! You can see on the next image, that autobeaming is not > always correct: > > For the sake of experiment, I tried to put thi

A strange behaivor of autobeaming

2019-02-04 Thread Павел Буданов
Hello everybody! You can see on the next image, that autobeaming is not always correct:For the sake of experiment, I tried to put this snippet to separate file:\scaleDurations 2/3 \relative f,{   \clef bass   \set subdivideBeams = ##t   \set baseMoment = #(ly:make-moment 3/16)   \tuplet 6/6 { b,8 f

Re: Simple example with vertical spacing and dynamic contexts

2019-02-01 Thread Павел Буданов
n Hill : > On 2019-01-31 9:11 am, Павел Буданов wrote: > > I've solved this problem partially with for lower contexts, but i > > can't find the necessary properties for upper contexts. Can you help > > me? > > > > \new StaffGroup > > << >

Re: Simple example with vertical spacing and dynamic contexts

2019-01-31 Thread Павел Буданов
    \override VerticalAxisGroup.nonstaff-nonstaff-spacing = #'((basic-distance . 10) (padding . 0.5))  }  \lyricmode { Ly4 -- ric ly -- ric }  \new Dynamics { s2.\< s4\ff }>>  30.01.2019, 13:58, "Павел Буданов" :Hello! I am completely confused. Could you show how to adjust th

Simple example with vertical spacing and dynamic contexts

2019-01-30 Thread Павел Буданов
Hello! I am completely confused. Could you show how to adjust the vertical spaces between all contexts in this example? \new StaffGroup<<  \new Dynamics { s2.\< s4\ff }  \new Lyrics \lyricmode { Ly4 -- ric ly -- ric }  \new Staff { a'4 a' a' a' }  \new Staff { d'4 d' d' d' }  \new Lyrics \lyricmode

Re: The lyrics under the dynamics.

2019-01-28 Thread Павел Буданов
It's magnificent! Thank you very much!29.01.2019, 02:03, "Valentin Villenave" :On 1/28/19, Павел Буданов <budanovpa...@yandex.ru> wrote: Hello everybody! I want to put the lyrics under the dynamics. What is the best way to do this?Greetings,you probably need to add a Dynami

The lyrics under the dynamics.

2019-01-28 Thread Павел Буданов
Hello everybody! I want to put the lyrics under the dynamics. What is the best way to do this? ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Organization of the piese part by part, not staff by staff

2019-01-11 Thread Павел Буданов
e composer in the mindset of what each player will be seeing.My two cents.On Thu, Jan 10, 2019 at 4:03 PM Valentin Villenave <valen...@villenave.net> wrote:On 1/10/19, Павел Буданов <budanovpa...@yandex.ru> wrote: > And I will add this music to score block: > \refren \bar &quo

Organization of the piese part by part, not staff by staff

2019-01-10 Thread Павел Буданов
Hello everybody!This case is usually used: we are instancing staffs, voices and putting notes into them. This is simply example:\new GrandStaff << \new Staff \rightHand  \new Staff \leftHand>>But I want to organizate the piece in other case. For example, I want to engrave any rondo. In first, I wil

Re: Incorrect behavior of lyrics aligned to nullvoice

2019-01-09 Thread Павел Буданов
2019 at 04:49:21PM +0300, Павел Буданов wrote: Hello everyone! Look for my example from Bach's chorale. Syllable positioning is incorrect where is the second between soprano and alto. Can you help me?   sopranonotes = \relative c'' { a g2 f4 } altonotes = \relative c''

Incorrect behaivor of lyrics aligned to nullvoice

2019-01-08 Thread Павел Буданов
Hello everyone!Look for my example from Bach's chorale. Syllable positioning is incorrect where is the second between soprano and alto. Can you help me? sopranonotes = \relative c'' { a g2 f4 }altonotes = \relative c'' { g8[ f] f[( e16 d] e4) c }aligner = \relative c'' { a8[ a] g( g16 g g8 g) f4 }l