X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Ftranscription-of-ancient-music-with-incipit.ly;h=cebe3d2876ecbe555998b7ea0f2c97af67a14426;hb=d01d7bd0752a3d141de5a1fb2905d30efbcd8970;hp=5f6709a42cfe05e0d10bf2052258b04de635b28d;hpb=a6ec33aa09b9f93eb5792d72abf5ee0efbcfba26;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 5f6709a42c..cebe3d2876 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.13.10" +\version "2.17.30" \header { - lsrtags = "ancient-notation, tweaks-and-overrides" - -%% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971 - 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 + \hide Staff.BarLine \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 \hide NoteHead 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 \hide NoteHead 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 \hide NoteHead e'1 | d'\breve | } } @@ -111,7 +103,7 @@ bassusNotes = { R1 | R1 | g2. e4 | - \once \override NoteHead #'transparent = ##t e1 | + \once \hide NoteHead 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 + \hide BarLine } % the next three instructions keep the lyrics between the bar lines \context { \Lyrics \consists "Bar_engraver" - \override BarLine #'transparent = ##t + \hide BarLine } \context { \StaffGroup @@ -282,7 +274,7 @@ incipitBassus = \markup { \context { \Voice % no slurs - \override Slur #'transparent = ##t + \hide Slur % 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 } } -