X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Ftranscription-of-ancient-music-with-incipit.ly;h=dff1783af0f2755b6d58d4036345b4f113c7e2d8;hb=f80f8678b39c5bc7da16668d4052514b8d07b281;hp=bca208643728301cd4ad4a4906c6cdb4e7f0a383;hpb=4ae30ca20a9dc36bb05a6838318666c2bae16975;p=lilypond.git diff --git a/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly b/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly index bca2086437..dff1783af0 100644 --- a/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly +++ b/Documentation/snippets/transcription-of-ancient-music-with-incipit.ly @@ -1,22 +1,13 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.12.2" +\version "2.17.15" \header { - lsrtags = "ancient-notation, tweaks-and-overrides" - -%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec - texidoces = " -A modo de alternativa para obtener auténticos «incipit» -independientes de la partitura principal, se incluyen como -elemento de marcado en el campo que se usa normalmente para el -nombre del instrumento. Por el momento, la letra sólo se puede -añadir como marcado directo. Por desgracia, su espaciado no es -análogo al de la letra principal. - -" - doctitlees = "Transcripción de música antigua con incipit" + lsrtags = "ancient-notation, specific-notation, tweaks-and-overrides, workaround" texidoc = " As a workaround to get real incipits which are independent from the @@ -29,15 +20,16 @@ main lyrics. doctitle = "Transcription of Ancient music with incipit" } % begin verbatim + global = { \set Score.skipBars = ##t \key g \major \time 4/4 %make the staff lines invisible on staves - \override Staff.BarLine #'transparent = ##t + \override Staff.BarLine.transparent = ##t \skip 1*8 % the actual music % let finis bar go through all staves - \override Staff.BarLine #'transparent = ##f + \override Staff.BarLine.transparent = ##f % finis bar \bar "|." } @@ -50,7 +42,7 @@ discantusNotes = { c'4 e'4.( d'8 c' b | a4) b a2 | b4.( c'8 d'4) c'4 | - \once \override NoteHead #'transparent = ##t c'1 | + \once \override NoteHead.transparent = ##t c'1 | b\breve | } } @@ -72,7 +64,7 @@ altusNotes = { a2 g4 e | fis g4.( fis16 e fis4) | g1 | - \once \override NoteHead #'transparent = ##t g1 | + \once \override NoteHead.transparent = ##t g1 | g\breve | } } @@ -92,7 +84,7 @@ tenorNotes = { R1 | R1 | r2 d'2. d'4 b e' | % two bars - \once \override NoteHead #'transparent = ##t e'1 | + \once \override NoteHead.transparent = ##t e'1 | d'\breve | } } @@ -111,7 +103,7 @@ bassusNotes = { R1 | R1 | g2. e4 | - \once \override NoteHead #'transparent = ##t e1 | + \once \override NoteHead.transparent = ##t e1 | g\breve | } } @@ -126,9 +118,9 @@ incipitDiscantus = \markup { \score { { \set Staff.instrumentName = #"Discantus " - \override NoteHead #'style = #'neomensural - \override Rest #'style = #'neomensural - \override Staff.TimeSignature #'style = #'neomensural + \override NoteHead.style = #'neomensural + \override Rest.style = #'neomensural + \override Staff.TimeSignature.style = #'neomensural \cadenzaOn \clef "neomensural-c1" \key f \major @@ -151,9 +143,9 @@ incipitAltus = \markup { \score { { \set Staff.instrumentName = #"Altus " - \override NoteHead #'style = #'neomensural - \override Rest #'style = #'neomensural - \override Staff.TimeSignature #'style = #'neomensural + \override NoteHead.style = #'neomensural + \override Rest.style = #'neomensural + \override Staff.TimeSignature.style = #'neomensural \cadenzaOn \clef "neomensural-c3" \key f \major @@ -177,9 +169,9 @@ incipitTenor = \markup { \score { { \set Staff.instrumentName = #"Tenor " - \override NoteHead #'style = #'neomensural - \override Rest #'style = #'neomensural - \override Staff.TimeSignature #'style = #'neomensural + \override NoteHead.style = #'neomensural + \override Rest.style = #'neomensural + \override Staff.TimeSignature.style = #'neomensural \cadenzaOn \clef "neomensural-c4" \key f \major @@ -205,9 +197,9 @@ incipitBassus = \markup { \score { { \set Staff.instrumentName = #"Bassus " - \override NoteHead #'style = #'neomensural - \override Rest #'style = #'neomensural - \override Staff.TimeSignature #'style = #'neomensural + \override NoteHead.style = #'neomensural + \override Rest.style = #'neomensural + \override Staff.TimeSignature.style = #'neomensural \cadenzaOn \clef "bass" \key f \major @@ -267,13 +259,13 @@ incipitBassus = \markup { \context { \Score % no bars in staves - \override BarLine #'transparent = ##t + \override BarLine.transparent = ##t } % the next three instructions keep the lyrics between the bar lines \context { \Lyrics \consists "Bar_engraver" - \override BarLine #'transparent = ##t + \override BarLine.transparent = ##t } \context { \StaffGroup @@ -282,7 +274,7 @@ incipitBassus = \markup { \context { \Voice % no slurs - \override Slur #'transparent = ##t + \override Slur.transparent = ##t % Comment in the below "\remove" command to allow line % breaking also at those barlines where a note overlaps % into the next bar. The command is commented out in this @@ -294,4 +286,3 @@ incipitBassus = \markup { indent = 5\cm } } -