Re: base 4/4 sheet with tab for guitare

2024-05-27 Thread Pierre Perol-Schneider
at 05:42 +0200, Pierre Perol-Schneider wrote: > > %%% > > \version "2.24.2" > > \include "predefined-guitar-fretboards.ly" > > > > global = { > > \clef "moderntab" > > \time 4/4 > > \numericTimeSignature >

Re: base 4/4 sheet with tab for guitare

2024-05-27 Thread Pierre Perol-Schneider
VoiceOne \\ \guitarVoiceTwo >> >> \layout { indent = 10 \context { \TabStaff \revert TimeSignature.stencil } } } %%% Le mar. 28 mai 2024 à 05:22, Jean-Christophe Énée < jean-christo...@blues-softwares.net> a écrit : > hi, > thank for this.

Re: base 4/4 sheet with tab for guitare

2024-05-27 Thread Pierre Perol-Schneider
Hi Jean-Christophe, How about: %%% \version "2.24.2" \include "predefined-guitar-fretboards.ly" global = { \clef "moderntab" \time 4/4 s1*32 \bar "|." } guitarVoiceOne = { \voiceOne c'4 d' e' f' g' } guitarVoiceTwo = { \voiceTwo c4 d e, f, g, } grille = \chordmode { c1 g }

Re: Stem disappearing

2024-05-21 Thread Pierre Perol-Schneider
Hi Raphael, Your voice number commands are missplaced. You'd rather write: \version "2.24.2" \new PianoStaff << \new Staff << \time 4/4 \key a \major voice one \new Voice \relative c' { \voiceOne %\slurUp % <= not needed e4-1\mf ( a8.-3 b16

Re: parenthesis around dot only (note value indication)

2024-04-30 Thread Pierre Perol-Schneider
Hi Dirck, See Harm's : https://lists.gnu.org/archive/html/lilypond-user/2017-05/msg00371.html E.g.: \version "2.24.3" #(define (parenthesize-dot parentheses-item) (let* ((dot (ly:grob-object (ly:grob-parent parentheses-item Y) 'dot))) (if (not (null? dot)) (begin (set!

Re: Spacing between staves

2024-04-25 Thread Pierre Perol-Schneider
Hi Peter, Using \bookpart? E.g.: %% \version "2.24" \paper { % ... } \header { title = "Two-movement Score" subtitle = " For A Single Melodic Instrument" } FirstMovement = { s1*32 } \bookpart { \paper { system-system-spacing.basic-distance = 10 } \score { \new Staff {

Re: coloring notes with more voices in a staff

2024-03-18 Thread Pierre Perol-Schneider
Hi Joop, I'd forget voices and do: \version "2.24.3" nr = \tweak color #red \etc \relative c { f'2( g4.) 8 | <\nr d f>4 q <\nr e g>16 <\nr f a> a8 r4 } HTH, cheers, Pierre Le lun. 18 mars 2024 à 18:44, Go77 a écrit : > Hi, > > I'm trying to color the note

Re: markup for circular bowing

2024-02-14 Thread Pierre Perol-Schneider
Hi Aaron, Nice! Personally I never mix path drawings and graphical command since the result is not consistant. E.g. { \magnifyStaff #2 c''1^\circular-bow } Cheers, Pierre Le mer. 14 févr. 2024 à 12:13, Aaron Hill a écrit : > On 2024-02-14 1:59 am, Orm Finnendahl wrote: > > Hi, > > > > I'd like

Re: markup for circular bowing

2024-02-14 Thread Pierre Perol-Schneider
Hi Orm, How about: \version "2.25.10" #(define-markup-command (circBow layout props)() (interpret-markup layout props (markup (#:stencil (make-path-stencil '(M 0 3.188 C -0.012 5.133 1.613 6.133 2.996 6.199 C 4.379 6.27 4.547 5.891 5.242 5.43 C 5.242

Re: Engraving a triple-stop for violin

2023-07-09 Thread Pierre Perol-Schneider
2^. >> > > (the \new Voice is necessary as there has been no music before this, so > there > does not exist a voice, and Lilypond will then create one Voice for each > parallel music). > > Cheers, > Valentin > > Am Sonntag, 9. Juli 2023, 07:07:53 CEST schrieb Pier

Re: Engraving a triple-stop for violin

2023-07-08 Thread Pierre Perol-Schneider
PS. Added to the LSR: https://lsr.di.unimi.it/LSR/Item?id=1170 Le dim. 9 juil. 2023 à 07:07, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Jun, > I'd do: > > { ^. } > > For some reason I couldn't find the dedicated documentation. > Cheers,

Re: Engraving a triple-stop for violin

2023-07-08 Thread Pierre Perol-Schneider
Hi Jun, I'd do: { ^. } For some reason I couldn't find the dedicated documentation. Cheers, Pierre Le dim. 9 juil. 2023 à 06:54, Jun Tamura a écrit : > Hello! > > Is there a recommended practice to engrave a triple-stop for the violin as > in the attached example - notes with different

Re: Get the margin values

2023-06-05 Thread Pierre Perol-Schneider
Simon, Jean, thank you both ! Le lun. 5 juin 2023 à 15:45, Jean Abou Samra a écrit : > Le lundi 05 juin 2023 à 15:34 +0200, Simon Albrecht a écrit : > > However, I can’t say why the right margin isn’t yet known by the time it > is queried. > > > > > Well, don't use “$defaultpaper”, that's the

Re: Get the margin values

2023-06-05 Thread Pierre Perol-Schneider
tom-margin } \line { left-margin = #left-margin } \line { right-margin = #right-margin } } #}))) % Test: \markup\margin Error: not a markup So how can I get the paper values as a markp? Tia, cheers, Pierre Le lun. 5 juin 2023 à 09:54, Pierre Perol-Schneider < pierre

Get the margin values

2023-06-05 Thread Pierre Perol-Schneider
Dear List, How could I automagically get the margin values, including the default values ? Ex. \version "2.24.1" \paper { top-margin = 30 left-margin = 30 } \markuplist { "top-margin = ?" "bottom-margin = ?" "left-margin = ?" "right-margin = ?" } TIA, cheers, Pierre

Re: Missing barline

2023-05-14 Thread Pierre Perol-Schneider
Hi Rip_Mus, Try: \relative c' { c1 \bar ".|:-|" \break c1 } Cheers, Pierre Le dim. 14 mai 2023 à 11:17, Rip _Mus a écrit : > Hello, > in the following minimal example, at the end of the first line, the > barline is missing: > > ``` > \version "2.24.0" > \relative c' { > c1 \bar ".|:"

Re: Circular staves

2023-04-24 Thread Pierre Perol-Schneider
Nice Jean !! Cheers, Pierre Le dim. 23 avr. 2023 à 22:10, Jean Abou Samra a écrit : > Le dimanche 23 avril 2023 à 12:37 +1000, Andrew Bernard a écrit : > > Just checking - you can't make circular staves with notes in lilypond, can > you? I know you can do nice circle of fifths diagrams as per

Re: 2.25.2 optional fine endings

2023-03-11 Thread Pierre Perol-Schneider
Hi Paul, Try: \version "2.25.0" voltaFine = \markup { \text \upright \fontsize #2 "Fine Ending" } voltaCont = \markup { \text \upright \fontsize #2 "To Cont." } \fixed c' { c1 \set Score.repeatCommands = #(list(list 'volta voltaFine) 'start-repeat) c4 d c2 \bar "|." \set

Re: Tempo vs. markup

2023-03-11 Thread Pierre Perol-Schneider
Hi Ralph, Try: \version "2.24.0" \relative c' { \time 3/4 \tweak outside-staff-priority #0 \tempo \markup { \concat { ( \smaller \general-align #Y #DOWN \note {2} #1 " = " \smaller \general-align #Y #DOWN \note {4} #1 ) } }

Re: OneStaff and instrument names

2023-02-27 Thread Pierre Perol-Schneider
Hi Nuno, This should work: \layout { \context { \OneStaff \consists Instrument_name_engraver } } HTH, cheers, Pierre Le mar. 28 févr. 2023 à 02:36, Nuno Trocado a écrit : > Is it possible to have instrument names when using OneStaff? Nothing > appears: > > \version "2.23.5" > >

Re: Key and time change at end of piece

2023-02-17 Thread Pierre Perol-Schneider
Sorry, wrong link : https://lists.gnu.org/archive/html/lilypond-user/2020-01/msg00541.html Le ven. 17 févr. 2023 à 13:08, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Aberforth, > Try : > https://lists.gnu.org/archive/html/lilypond-user/2020-03/msg0

Re: Key and time change at end of piece

2023-02-17 Thread Pierre Perol-Schneider
Hi Aberforth, Try : https://lists.gnu.org/archive/html/lilypond-user/2020-03/msg00258.html HTH, Cheers, Pierre Le ven. 17 févr. 2023 à 10:36, Aberforth D - Instrumentals < aberfor...@gmail.com> a écrit : > Hello, > > I am working on a complete piano vocal score for an opera. To keep things >

Re: bar check problems with a repeat volta whose first ending is an incomplete bar

2023-01-11 Thread Pierre Perol-Schneider
Hi Kenneth Le jeu. 12 janv. 2023 à 07:30, Kenneth Wolcott a écrit : ... > It is bar #8 that is the incomplete bar in the first repeat volta, > ... Two possibilities: a) ignore the warning, since it compiles OK; b) Change the measure length for each voice for this specific measure: \set

v2.24 & 2.25 NR A12.1 smallCaps aka caps does support accented characters.

2023-01-05 Thread Pierre Perol-Schneider
Dear BugSquad, The note : "Note: \smallCaps does not support accented characters." should be removed. See: --- https://lilypond.org/doc/v2.24/Documentation/notation/font.html#index-_005csmallCaps --- https://lilypond.org/doc/v2.25/Documentation/notation/font-markup#index-_005csmallCaps Cheers,

Re: Simultaneous dotted notes

2023-01-02 Thread Pierre Perol-Schneider
Hi Paul, Le lun. 2 janv. 2023 à 18:36, Paul Hodges a écrit : > In this instance I disagree. > > > See Gould, p59 (near top): "Unless conditions are cramped, [unison] notes > of different duration take a dot beside each notehead". > Hum, right, I've checked the page. For some reason it was

Re: Simultaneous dotted notes

2023-01-02 Thread Pierre Perol-Schneider
Hi Joel, Le lun. 2 janv. 2023 à 17:29, Joel C. Salomon a écrit : ... > (a) Is the Lilypond default presentation really the better way of > indicating this? If so, I can just leave it alone. Otherwise, > Yes it is, AFAIK (See E. Gould as ref. as far as I remember) ... > (b) I've tried

Re: Footnotes in Lyrics

2023-01-02 Thread Pierre Perol-Schneider
Hi Johannes, Here's a little hack: \markup \footnote \null "(1) footnote text" \score { << { a' b' c'' d'' c'' b' a' } \addlyrics { One two \markup \concat { three \raise #.7 \teeny (1) } four five six se -- ven } >> } HTH, Cheers, Pierre Le lun. 2 janv. 2023 à 10:50,

Re: Flat collides with preceding stem and notehead

2022-12-25 Thread Pierre Perol-Schneider
Hi Mikail, I'm not sure this situation could be considered as a bug. Anyway, here are two workarounds: \version "2.22.0" << { c'8 f'16 % optional: % \tweak NoteColumn.X-offset #.5 ges' } { \tuplet 3/2 { c'8 c' % better: \tweak

Re: Ross’s rules

2022-12-21 Thread Pierre Perol-Schneider
Hi Eef, See : https://lilypond.org/doc/v2.23/Documentation/essay/short-literature-list.html Cheers, Pierre Le jeu. 22 déc. 2022 à 07:29, Eef Weenink a écrit : > Always interested in new (for me new) sources of knowledge: > "What are the Ross’s rules?" > > Regards, Eef > > Op 21 dec. 2022, om

Re: Modify flat flag appearance like beamed notes

2022-12-20 Thread Pierre Perol-Schneider
Le mar. 20 déc. 2022 à 11:09, Jean Abou Samra a écrit : ... > OK, here is another solution using an actual beam: > ... Very clever Jean! Thanks for the tip!! Cheers, Pierre

Re: Handbell notation

2022-12-04 Thread Pierre Perol-Schneider
think that s2 would be better. > > I assume the \voiceXXX clauses are to set the stem directions? > > Thanks, > Martin > > On Sun, 2022-12-04 at 22:48 +0100, Pierre Perol-Schneider wrote: > > Hi Martin, > Sorry but the last attempt is hardly readable. > As Michael sugges

Re: Handbell notation

2022-12-04 Thread Pierre Perol-Schneider
Hi Martin, Sorry but the last attempt is hardly readable. As Michael suggested previously, precising voices might help ; also, you could change some voice sizes for a better reading. E.g. something like: sopranBells = \fixed c'' { \voiceOne | %mes. 13 g4 r8 g8 4 4 | %mes. 14 g4 4 4 4

Re: Different default arpeggio positions

2022-12-02 Thread Pierre Perol-Schneider
Hi Harm, hi Jean, Le ven. 2 déc. 2022 à 23:49, Thomas Morley a écrit : ... > Even for me - I don't understand that (x x)-line: > ... +1, thanks for asking! Cheers, Pierre

Re: Tie with slash (caesura) on the curve

2022-11-10 Thread Pierre Perol-Schneider
Hi Jean, Le jeu. 10 nov. 2022 à 11:23, Jean Abou Samra a écrit : ... > This is nice! Just a thought: why use after-line-breaking > here? ... Bad habit? Respond without thinking long enough? Too proud it'd worked? Missing knowledge? All?... Yeah, probably all... > This is the sort of thing

Re: Tie with slash (caesura) on the curve

2022-11-09 Thread Pierre Perol-Schneider
Hi Andrew, Hi Dirck, Le jeu. 10 nov. 2022 à 02:40, Andrew Bernard a écrit : > Never say anything is technically unplayable for pianists. Some of the > technical ability of contemporary players leaves me breathless. > ... Actually it's for guitarists ;) On 10/11/2022 12:02 pm, Dirck Nagy wrote:

Re: different note head sizes on one stem

2022-10-30 Thread Pierre Perol-Schneider
Hi Paul, See: https://lsr.di.unimi.it/LSR/Item?id=298 For a better answer, please provide a tiny example ( https://lilypond.org/tiny-examples.html). Cheers, Pierre Le dim. 30 oct. 2022 à 18:34, Paul Scott a écrit : > How can I write different note head sizes on one stem? > > TIA, > > Paul > > >

Re: Articulations in same spot where slur ends

2022-10-29 Thread Pierre Perol-Schneider
Hi Ole, I'd do: \relative c' { d'8( c\prall-\tweak avoid-slur #'outside \turn) } Cheers, Pierre Le sam. 29 oct. 2022 à 07:58, Ole V. Villumsen via bug-lilypond < bug-lilypond@gnu.org> a écrit : > A possible workaround is something like > > d'8( c\prall-\tweak extra-offset #'(0 . 1.3)\turn)

Re: Full bar rest printed incorrectly after time signature change

2022-10-28 Thread Pierre Perol-Schneider
You're welcome Ole ! PS. Don't forget to unset the Timing in order to avoid any surprises, eg.: \new PianoStaff << \new Staff \relative { \time 3/4 s4*6 << { g'8([ fis] e' d c b) } \\ { s8 \once\hideNotes fis8~ 2 } >> \set Timing.measureLength = #(ly:make-moment 2/4) << {

Re: Full bar rest printed incorrectly after time signature change

2022-10-28 Thread Pierre Perol-Schneider
PS. See also: https://lilypond.org/doc/v2.22/Documentation/notation/special-rhythmic-concerns#time-administration ___ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond

Re: Full bar rest printed incorrectly after time signature change

2022-10-28 Thread Pierre Perol-Schneider
Hi Ole, ... > I didn’t see any examples of a zero partial in the docs either. I have > trouble making good sense of your last statement, though, sorry. What are > you suggesting to do when the composer did not intend nor supply an upbeat? > (My example is from C.Ph.E. Bach (1714 - 88): Fantasia C

Re: LP v.2.23.13 bin has no executable rights

2022-10-04 Thread Pierre Perol-Schneider
Dear Jean, Le mar. 4 oct. 2022 à 09:12, Jean Abou Samra a écrit : ... > I don't think the directory where you extract the archive should matter. > ... Well actually it does... The way the partitions and mountings are made on this computer is somehow -- let say -- a little bit special and due

Re: LP v.2.23.13 bin has no executable rights

2022-10-04 Thread Pierre Perol-Schneider
and thank you for your time Jonas. Cheers, Pierre Le lun. 3 oct. 2022 à 22:56, Jonas Hahnfeld a écrit : > On Mon, 2022-10-03 at 09:00 +0200, Pierre Perol-Schneider wrote: > > Hi Squad team, > > See: > > ./bin: > > total 13228 > > -rw-r--r-- 1 pierre pierre 418 sept.

Re: LP v.2.23.13 bin has no executable rights

2022-10-03 Thread Pierre Perol-Schneider
PS. For the GNU/Linux binary Le lun. 3 oct. 2022 à 09:00, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Squad team, > See: > ./bin: > total 13228 > -rw-r--r-- 1 pierre pierre 418 sept. 18 15:11 abc2ly > -rw-r--r-- 1 pierre pierre 42

LP v.2.23.13 bin has no executable rights

2022-10-03 Thread Pierre Perol-Schneider
Hi Squad team, See: ./bin: total 13228 -rw-r--r-- 1 pierre pierre 418 sept. 18 15:11 abc2ly -rw-r--r-- 1 pierre pierre 422 sept. 18 15:11 convert-ly -rw-r--r-- 1 pierre pierre 418 sept. 18 15:11 etf2ly -rw-r--r-- 1 pierre pierre 420 sept. 18 15:11 lilymidi -rw-r--r-- 1 pierre

Re: Lilypond

2022-09-18 Thread Pierre Perol-Schneider
Hi Laurent, Hi Jan, @Laurent, see: https://lilypond.org/doc/v2.22/Documentation/notation/bars.html#bar-and-bar-number-checks e.g.: \version "2.22.0" { c' e' g' e'1 | 2 } Cheers, Pierre Le dim. 18 sept. 2022 à 11:02, Jan Nieuwenhuizen a écrit : > pagani laurent writes: > > Can someone answer

Re: color change working in only upper staff

2022-07-18 Thread Pierre Perol-Schneider
Hi William, hi Jim, Le lun. 18 juil. 2022 à 16:38, William Rehwinkel < will...@williamrehwinkel.net> a écrit : > Hey Jim, > > To be honest, I'm not sure why the example you posted doesn't work, but I > was able to find a workaround by using \contexts to apply the override to > each staff, like

Re: color change working in only upper staff

2022-07-18 Thread Pierre Perol-Schneider
Hi William, hi Jim, Le lun. 18 juil. 2022 à 16:38, William Rehwinkel < will...@williamrehwinkel.net> a écrit : > Hey Jim, > > To be honest, I'm not sure why the example you posted doesn't work, but I > was able to find a workaround by using \contexts to apply the override to > each staff, like

Re: Re-using "\with" contexts

2022-07-15 Thread Pierre Perol-Schneider
Hi Alasdair, See also: https://lilypond.org/doc/v2.22/Documentation/notation/defining-new-contexts.html Cheers, Pierre Le ven. 15 juil. 2022 à 16:22, Lukas-Fabian Moser a écrit : > Hi Alasdair, > > > Here a new staff is instantiated; with about 10 lines of "\with" to > > change its appearance

Re: help!

2022-02-01 Thread Pierre Perol-Schneider
Hi, How about: \version "2.23.5" \paper { ragged-right = ##f } voltaA = \markup\large { \text "Для повторения" } voltaB = \markup\large { \text "Для окончания" } \score {   \new Staff   \with { \omit Clef \omit

Re: Placing articulations outside of the staff.

2021-10-07 Thread Pierre Perol-Schneider
Hi Calvin, You could also use the 'tweak' command (note the '-' sign before it); ex: \version "2.22" {   c''8\f[ -\tweak padding #1 ---> a'-.] } Cheers, Pierre Le 07/10/2021 à 13:12, Calvin Ransom a écrit : Hi Kieren I did mean to say accent and not accidental (was writing that email and

test

2021-06-30 Thread Pierre Perol-Schneider
test

Re: Fingering collision

2021-05-30 Thread Pierre Perol-Schneider
Bonjour Stéphane, The example you want shows three voices while your file has only two... So I'd do something like: \version "2.20.0" \new Staff \relative c' << \new Voice { \voiceOne \set fingeringOrientations = #'(left) 2 } \new Voice { \voiceTwo \set

Re: Background Colour

2021-05-18 Thread Pierre Perol-Schneider
Oops, sorry admin, sent again... Le mar. 18 mai 2021 à 14:55, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Wim, > See: https://lsr.di.unimi.it/LSR/Item?id=699 > Cheers, > Pierre > > Le mar. 18 mai 2021 à 14:30, Wim van Dommelen a écrit : &g

Re: Horizontal beam parallel to staff

2021-05-10 Thread Pierre Perol-Schneider
Hi Ahanu, How about: \version "2.20.0" { %\override Beam.damping = #5 \override Beam.positions = #'(5 . 5) g''8 b b c'' c'' b b g'' } Cheers, Pierre Le mar. 11 mai 2021 à 04:04, Ahanu Banerjee a écrit : > I know it is not standard practice, but I am looking for a way to make > beams

Re: A work-in-progress guide to extending LilyPond

2021-04-05 Thread Pierre Perol-Schneider
Pretty impressive, great job Jean! Cheers, Pierre Le lun. 5 avr. 2021 à 21:38, Jean Abou Samra a écrit : > Hi, > > A frequent complaint on this list is the lack > of available documentation about LilyPond's > inner workings and programming interfaces. > > Indeed, I have myself experienced the

Re: text above threader

2021-03-02 Thread Pierre Perol-Schneider
PS. See also: http://lilypond.org/doc/v2.22/Documentation/notation/custom-titles-headers-and-footers.html#custom-layout-for-headers-and-footers Le mar. 2 mars 2021 à 20:26, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Lydia, > How about

Re: text above threader

2021-03-02 Thread Pierre Perol-Schneider
Hi Lydia, How about: \paper { oddHeaderMarkup = \markup \fill-line { \null \teeny\sans "Octoechos: Sunday" } evenHeaderMarkup = \oddHeaderMarkup } Cheers, Pierre Le mar. 2 mars 2021 à 20:14, Lydia Westerberg a écrit : > > How can I use lilypond to insert the term “Octoechos: Sunday”

Re: Black borders with table using \markuplist and please center

2021-02-21 Thread Pierre Perol-Schneider
; } { \combine\cell "7" }{ \combine\cell "8" }{ \combine\cell "6" } { \combine\cell "10" }{ \combine\cell "" }{ \combine\cell "12" } \with-dimensions-from\null \override #'(line-cap-style . square)

Re: Black borders with table using \markuplist and please center

2021-02-21 Thread Pierre Perol-Schneider
Hi Adam, Here's my attempt: \version "2.22.0" cell = \markup \override #'(line-join-style . miter) \override #'(line-cap-style . square) \path #.3 #'((moveto -1.5 -1.5)(lineto -1.5 3)(lineto 3 3)(lineto 3 -1.5)) \markup \fill-line { \column \override #'(baseline-skip . -.3)

Re: TextSpanner custom line

2021-02-17 Thread Pierre Perol-Schneider
Hi Artur, This is not exactly what you ask for but you could do something like: \version "2.22.0" { c'1 -\tweak X-extent #'(0 . 0) ^\markup\pattern #25 #X #0 \musicglyph #"scripts.turn" 1 1 1 1 1 1 1 1 1 } Cheers, Pierre Le mer. 17 févr. 2021 à 16:48, Artur Wrona a écrit : > Hi, dear

Re: Keeping original system distances

2021-02-08 Thread Pierre Perol-Schneider
Hi Calvin, You can specify a certain distance, e.g.: \paper { system-system-spacing.basic-distance = 15 % <= to be set properly %ragged-bottom = ##f %ragged-last-bottom = ##f } HTH, cheers, Pierre Le lun. 8 févr. 2021 à 17:57, Calvin Ransom a écrit : > I am attempting to conserve the

Re: Spannerize glyphs, markups etc. ?

2021-02-03 Thread Pierre Perol-Schneider
Hi Dimitris, Here's a trial (every adjsutment are manual): %% \version "2.22.0" curl = \markup \stencil #(make-path-stencil '(M 0 0 C 4 0 4 5 2.5 5 C 1 5 1 0 5 0) .15 .6 .6 #f) mors = \markup \stencil #(make-path-stencil '(M 0 0 L .5 0 M 1.5 0 L 3 0) .15 .6

Re: Aligning note to different voice across staves

2021-02-03 Thread Pierre Perol-Schneider
Hi Thibault, hi Carl, Carl, your workaround's find but the hidden stem and flag could affect the staff-staff spacings. (A hidden whole/half note would affect the horizontal spacing) E.g. : \version "2.22.0" \new PianoStaff << \new Staff << \relative { e'16 f g e e f g e } \\ d'2 >> \new

Re: Arpeggio confusion

2021-01-09 Thread Pierre Perol-Schneider
\autoBeamOff ?? Cheers, Pierre Le dim. 10 janv. 2021 à 00:25, Kieren Diment a écrit : > I think this should be an obvious thing, but I can't for the life of me > find how to print out chords as individual notes. Can anyone help > illuminate? > > Minimal example below. > > > \version "2.18.2" >

Re: Repeats with bar-engraver removed

2021-01-05 Thread Pierre Perol-Schneider
Thank you Jean ! Le lun. 4 janv. 2021 à 21:42, Jean Abou Samra a écrit : ... > It is not at all silly. The path to the answer is a bit convoluted. > ...

Re: Repeats with bar-engraver removed

2021-01-04 Thread Pierre Perol-Schneider
Maybe it's a silly question but why not simply something like: \version "2.18" { c'1 \bar ".|:" c' c' c' \bar ":|." c' c' } Cheers, Pierre Le lun. 4 janv. 2021 à 20:23, Jean Abou Samra a écrit : > > I need to be able to engrave repeats, but I fear that the > > bar-engraver, which I turned

Re: A comment about the documentation

2021-01-01 Thread Pierre Perol-Schneider
I've added the github link in the snippet defs. Cheers, Pierre Le ven. 1 janv. 2021 à 17:46, Peter Toye a écrit : > Carl, > > Thanks. The problem is that map-some-music is obviously a very useful > function if you're trying to write code that performs an action at many > places in a music

Re: offset \breathe sign

2020-12-30 Thread Pierre Perol-Schneider
er. 30 déc. 2020 à 11:01, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > For such tiny adjsutment why not 'extra-offset? > E.g. > > \version "2.19.58" > { > \time 3/2 e''4 e'' a''2 > \tweak extra-offset #'(-1 . 1) > %\tweak X-offs

Re: offset \breathe sign

2020-12-30 Thread Pierre Perol-Schneider
For such tiny adjsutment why not 'extra-offset? E.g. \version "2.19.58" { \time 3/2 e''4 e'' a''2 \tweak extra-offset #'(-1 . 1) %\tweak X-offset #-5 \breathe a''!2 } Cheers, Pierre Le mer. 30 déc. 2020 à 10:55, Johannes Roeßler a écrit : > thx Pierre - thats whta I tried - doesn't

Re: offset \breathe sign

2020-12-30 Thread Pierre Perol-Schneider
Hi Johannes, How about: \version "2.20" { c'1 \tweak X-offset #-5 \breathe 1 } Cheers, Pierre Le mer. 30 déc. 2020 à 10:06, Johannes Roeßler a écrit : > Hi group, > > what would be the right way to shift a \breathe sign to the left - I > only managed to move it up and down with \offset

Re: Custom beam subdivisions

2020-12-29 Thread Pierre Perol-Schneider
2020 à 07:46, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Oops, sorry, not awake... > How about: > > \version "2.20.0" > \score { > \new Staff { << \relative c' { > \time 6/8 > \set baseMoment = #(ly:ma

Re: Custom beam subdivisions

2020-12-28 Thread Pierre Perol-Schneider
c c c c32 c c c] } >> } } Cheers, Pierre Le mar. 29 déc. 2020 à 07:08, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Vaylor, > > Le mar. 29 déc. 2020 à 03:36, Vaylor Trucks a écrit : > > >> Any thoughts? >> > > ??? > \version "2

Re: Custom beam subdivisions

2020-12-28 Thread Pierre Perol-Schneider
Hi Vaylor, Le mar. 29 déc. 2020 à 03:36, Vaylor Trucks a écrit : > Any thoughts? > ??? \version "2.20.0" \score { \new Staff { << \relative c' { \time 6/8 %\set baseMoment = #(ly:make-moment 1/8) \set beatStructure = #'(2 1 2 1) %\set subdivideBeams = ##t c16 c c c

Re: How to embed a hairpin inside markup?

2020-12-19 Thread Pierre Perol-Schneider
Hi Kenneth, Tiny example? Version? How about: \version "2.20" sfb = #(make-dynamic-script #{ \markup { \dynamic "sf" \normal-text\italic "bell-like" } #}) niente = #(make-dynamic-script #{ \markup { \normal-text\italic "niente" } #}) \layout { indent = 0 ragged-right =

Re: horizontal position of augmentation dots

2020-12-06 Thread Pierre Perol-Schneider
Hi Richard, How about: \version "2.20.0" A = {f2~ f8. s16 s4 } B = {bes,2~ \tweak Dots.extra-offset #'(-.8 . 0) bes,8. bes,32 a, bes,16 c d e } \score { \new Staff << \new Voice {\voiceOne \clef bass \A } \new Voice {\voiceTwo \B } >> } Cheers, Pierre Le

Re: line break doesn't work

2020-11-28 Thread Pierre Perol-Schneider
Hi Rita, Are you sure about: \set Score.timing = ##f ?? How about putting: \autoBeamOff instead? Cheers, Pierre Le sam. 28 nov. 2020 à 22:10, Rita Composer a écrit : > Dear Professionals, > > Can you tell me why \break command doesn't work for me? > I've just started to make a something

Re: Numero sign

2020-11-24 Thread Pierre Perol-Schneider
Hi David, You have to look at the serif font family you have on your computer. E.g.: %% \version "2.20.0" \markuplist { \override #'(font-name . "Garamond") "№" \override #'(font-name . "Garamond bold") "№" \override #'(font-name . "Linux Libertine G") "№" \override #'(font-name . "Source

Re: Create a \prall with a slur above

2020-11-08 Thread Pierre Perol-Schneider
Or simply: \version "2.20.0" \new TabStaff { \tabFullNotation g^\markup\left-align\tie \musicglyph #"scripts.prall" } Cheers, Pierre Le dim. 8 nov. 2020 à 18:34, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi Viktor, > See:

Re: Create a \prall with a slur above

2020-11-08 Thread Pierre Perol-Schneider
Hi Viktor, See: http://lilypond.org/doc/v2.20/Documentation/notation/text-markup-commands E.g.: \version "2.20.0" \new TabStaff { \tabFullNotation g ^\markup\left-align { \override #'(direction . 1) \tie \musicglyph #"scripts.prall" } } HTH, Cheers, Pierre Le dim. 8 nov. 2020 à

Re: Key change at the end of a piece

2020-11-03 Thread Pierre Perol-Schneider
Hi Ralph, See: http://lilypond.1069038.n5.nabble.com/key-change-at-end-of-snippet-td227745.html Cheers, Pierre Le mar. 3 nov. 2020 à 16:13, Ralph Palmer a écrit : > Hi - > > I'm trying to add a clef change at the end of a fiddle tune, to show that > the first section is in a different key than

Re: LSR 1119 Force clef change in alternatives

2020-11-02 Thread Pierre Perol-Schneider
Ok Aaron. Cheers, Pierre Le ven. 30 oct. 2020 à 23:45, Aaron Hill a écrit : > On 2020-10-30 2:19 pm, Thomas Morley wrote: > > To the author (Pierre?) of > > lsr.di.unimi.it/LSR/Item?u=1=1119 > > > > Many thanks for your snippet, though, please add a description to it. > > ;) > > Would this

Re: LSR 1119 Force clef change in alternatives

2020-11-02 Thread Pierre Perol-Schneider
Done! Thanks for the reminder Harm. Cheers Pierre Le ven. 30 oct. 2020 à 22:19, Thomas Morley a écrit : > To the author (Pierre?) of > lsr.di.unimi.it/LSR/Item?u=1=1119 > > Many thanks for your snippet, though, please add a description to it. ;) > > Thanks, > Harm > >

Re: Left-align the horizontal line that separates footnotes from the body of the score

2020-10-18 Thread Pierre Perol-Schneider
Hi Jun, Try: \paper { footnote-separator-markup = ##f } Cheers, Pierre Le dim. 18 oct. 2020 à 13:25, Jun Tamura a écrit : > Hello, > > There is a horizontal line between the footnotes and the body of the > score. The length seems to be a half of the page width and aligned to the > center of

Re: Removing bar connecting grouped staves

2020-10-17 Thread Pierre Perol-Schneider
Hi Gilberto, Try: \version "2.19.82" \score { << \new Staff {c'4 d' e' f'} \new Staff {c'4. d'4. e'4} \new Staff {c'2 d'2} >> \layout{ \omit Score.BarLine \omit Score.SystemStartBar } } Cheers, Pierre Le sam. 17 oct. 2020 à 22:45,

Re: Cut Common Time signature

2020-10-15 Thread Pierre Perol-Schneider
Hi Ritchie, See also: http://lilypond.org/doc/v2.20/Documentation/notation/displaying-rhythms.html#index-_005cnumericTimeSignature Cheers, Pierre Le jeu. 15 oct. 2020 à 19:21, bobr...@centrum.is a écrit : > \time 2/2 > > That will, by default, produce the C with vertical slash. > > David > >

Re: Markup Between Systems

2020-10-12 Thread Pierre Perol-Schneider
Le lun. 12 oct. 2020 à 12:18, Xavier Scheuer a écrit : > One lead would be to "hack" the system-separator-markup. > Smart! Cheers, Pierre

Re: Dimensions vs outline

2020-10-05 Thread Pierre Perol-Schneider
Yes Jean, this is exactly the type of example I was looking for. Thank you! It should be added to: https://lilypond.org/doc/v2.20/Documentation/notation/other#index-_005cwith_002ddimensions and to: https://lilypond.org/doc/v2.20/Documentation/notation/other#index-_005cwith_002doutline as a

Re: creating "null" time signature for unmetered cadenzas

2020-10-04 Thread Pierre Perol-Schneider
Hi Andrew, How about: \version "2.20.0" { \time 6/1 \override Staff.TimeSignature.stencil = #(lambda (grob) (grob-interpret-markup grob #{ \markup\compound-meter #'(0 0) #})) c'4 } Cheers, Pierre Le dim. 4 oct. 2020 à 11:43, N. Andrew Walsh a écrit : > Hi List, > > I have a piece

Dimensions vs outline

2020-10-03 Thread Pierre Perol-Schneider
Hi List, I'm trying to understand the difference between "outline" and "dimensions": \version "2.20.0" \markup { "1234" \combine \filled-box #'(-1 . 4) #'(-1 . 2.5) #1 \override #'(style . outline) \override #'(thickness . 3) \whiteout \with-outline "555" "5" "6789" }

Re: How do I engrave this articulation? a note with a dot and a right angle bracket underneath it?

2020-09-21 Thread Pierre Perol-Schneider
HI Ken, Try: \version "2.20.0" \fixed c' { e4-1-.-> c'-5-. d-1-.-> b-4-. } Cheers, PIerre Le lun. 21 sept. 2020 à 22:46, Kenneth Wolcott a écrit : > Hi; > > c-. and c-> Lilypond articulation engravings I understand, but I > don't understand how to put a dot underneath the note and then a

Re:

2020-09-17 Thread Pierre Perol-Schneider
Hi Stefan, convert-ly should do the job. (See: http://lilypond.org/doc/v2.19/Documentation/usage/invoking-convert_002dly.html) Le 17/09/2020 à 10:02, Stefan Thomas a écrit : \motiv #'Stefan {c'8 d' c' d' e2} and later it can be used like this: \Stefan {e f g }

Re: Fingering: showing strings by dots?

2020-09-04 Thread Pierre Perol-Schneider
Hi Harm and thank you for your detailed answer. For some reason, at the first time, I was pretty sure it looked like curved beams... My mistake! Cheers, Pierre Le dim. 23 août 2020 à 19:11, Thomas Morley a écrit : > Am So., 23. Aug. 2020 um 18:39 Uhr schrieb Pierre Perol-Schnei

Re: Google Summer of Code final submission!

2020-09-04 Thread Pierre Perol-Schneider
Brilliant Owen, thank you. Cheers, Pierre Le mar. 1 sept. 2020 à 01:16, David Nalesnik a écrit : > On Mon, Aug 31, 2020 at 3:33 AM Owen Lamb wrote: > > > > Hello everyone! > > > > I've just completed Google Summer of Code for this year. My work has > been on adding rudimentary support for

Re: White background below custom dynamic mark so that bar line is partially hidden

2020-09-04 Thread Pierre Perol-Schneider
Hi Claire, See also: https://lilypond.org/doc/v2.20/Documentation/notation/other#index-_005cwhiteout Cheers, Pierre Le mar. 1 sept. 2020 à 15:02, Martín Rincón Botero < martinrinconbot...@gmail.com> a écrit : > Great! :-) > > On Tue 1. Sep 2020 at 14:27 Claire Meyer < >

Re: Fingering: showing strings by dots?

2020-08-23 Thread Pierre Perol-Schneider
Sure Harm, here you go: https://www.youtube.com/watch?v=YND32HckZqk=1m24s Cheers, Pierre Le dim. 23 août 2020 à 11:02, Thomas Morley a écrit : > Am So., 23. Aug. 2020 um 10:52 Uhr schrieb Pierre Perol-Schneider > : > > > > Dear Andrew, > > > > Le dim. 23 aoû

Re: Fingering: showing strings by dots?

2020-08-23 Thread Pierre Perol-Schneider
Dear Andrew, Le dim. 23 août 2020 à 08:09, Andrew Bernard a écrit : I play bass gamba - I've always wanted to do the lovely curved beams > (and for Bach,. and the lot!). No chance lilypond will ever be able to, > I don't think! > I saw Harm (T. Morley) making a short presentation (no details)

Re: Fingering: showing strings by dots?

2020-08-23 Thread Pierre Perol-Schneider
Le dim. 23 août 2020 à 07:56, Andrew Bernard a écrit : > Hi Pierre, > > Bass gamba in France has very detailed markups, such as poussez (p) and > tirez (t), push and pull (up and down bow), and a whole swag more. I'll > dig up some Marin Marais and send to you. > Thank you Andrew.

Re: Fingering: showing strings by dots?

2020-08-23 Thread Pierre Perol-Schneider
Thank you for the examples. Le dim. 23 août 2020 à 07:59, Alasdair McAndrew a écrit : > There are other issues with this music, which can bristle with expressive > marks: bowing and fingering information, various shorthands for different > sorts of ornaments, over and above the placement of

Re: Fingering: showing strings by dots?

2020-08-22 Thread Pierre Perol-Schneider
Hi Alasdair, I've never seen such notation. I'd be curious to see an example. Maybe this could help: http://lsr.di.unimi.it/LSR/Item?id=1068 E.g.: \version "2.20.0" #(define-markup-command (circled-pattern layout props radius angle num arg) (number? number? number? markup?)

Re: Guitar barré without text spanner

2020-08-14 Thread Pierre Perol-Schneider
Hi Francesco, How about a simple markup? E.g.: \version "2.20.0" half = \markup\concat\fontsize #-5 { \raise #.6 "1"\raise #.2 "/" "2" \hspace #.2 } { \clef "G_8" -\tweak X-offset #-2.5 ^\markup\concat\tiny { \half "C" \hspace #.2 "II" \magnify #0.5 { \lower #.1 " ┐" } } }

  1   2   3   4   5   6   7   8   9   10   >