Jump to content

Text headword: Difference between revisions

From LilyPond wiki
m New category
Tags: Mobile edit Mobile web edit
m Support denser typesetting
Line 1: Line 1:
Text headword
Text headword


<lilypond version="2.24" full>
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=829
 
% NR 1.8 Text
 
% L. v. Beethoven, Op. 110
% L. v. Beethoven, Op. 110
% Piano sonata 31
% Piano sonata 31
% measures 1 - 7 (following Henle Urtext edition)
% measures 1 - 7


\include "english.ly"
\include "english.ly"


\new PianoStaff <<
\new PianoStaff <<
  % upper staff
   \new Staff = "right hand" {
   \new Staff {
     \clef treble
     \clef treble
     \key af \major
     \key af \major
Line 34: Line 29:
     bf''4.( g''4 ef''8) |
     bf''4.( g''4 ef''8) |
   }
   }


   \new Dynamics {
   \new Dynamics {
Line 40: Line 34:
       -\tweak baseline-skip #0
       -\tweak baseline-skip #0
       -\markup \center-column {
       -\markup \center-column {
                  \line { \dynamic p \italic { con amabilità } }
          \whiteout \line { \dynamic p \italic { con amabilità } }
                  \line { \hspace #3 (sanft) } } |
          \line { \hspace #3 (sanft) } } |
     s2. |
     s2. |
     s2.\< |
     s2.\< |
Line 51: Line 45:
   }
   }


 
   \new Staff = "left hand" {
  % lower staff
   \new Staff {
     \clef bass
     \clef bass
     \key af \major
     \key af \major
Line 72: Line 64:
   }
   }
>>
>>
\paper { tagline = ##f }
</lilypond>
</lilypond>



Revision as of 17:36, 23 December 2025

Text headword

\version "2.24"

% L. v. Beethoven, Op. 110
% Piano sonata 31
% measures 1 - 7

\include "english.ly"

\new PianoStaff <<
  \new Staff = "right hand" {
    \clef treble
    \key af \major
    \time 3/4
    \tempo "Moderato cantabile molto espressivo"

    <c'' af'>4.( <af' ef'>8 ) q8.[ q16] |
    <df'' g'>4 <bf' g'>2 |
    <af' ef''>4.( <af' df''>8[) <af' ef''>-.( <af' f''>-.)] |
    << { ef''8.[( d''16]) df''8\trill\fermata ~
           \oneVoice df''32[ c'' df'' ef''] }\\
       { g'4 g'8 s } >>
     \grace { df''32[ ef''] } f''8[ ef''16 df''] |
%
% 5
%
    c''4.( ef''4 af''8) |
    af''4( g''2) |
    bf''4.( g''4 ef''8) |
  }

  \new Dynamics {
    s2.-\tweak padding #-1
       -\tweak baseline-skip #0
       -\markup \center-column {
          \whiteout \line { \dynamic p \italic { con amabilità } }
          \line { \hspace #3 (sanft) } } |
    s2. |
    s2.\< |
    s8..\p s32\< s16..\> s64\! s8 s4\> |
%
% 5
%
    s2.*3\! |
  }

  \new Staff = "left hand" {
    \clef bass
    \key af \major
    \time 3/4

    <af, ef>4. \stemUp <c ef>8 q8.[ q16] \stemNeutral |
    <bf, ef>4 <df ef>2 |
    << { ef8[( af c' bf) c' df'] } \\
       { c4.( f8[) ef8-.( df-.]) } >> |
    <ef bf>4 q8_\fermata r r4 | \clef treble
%
% 5
%
    af16[ <c' ef'> q q] af[ <c' ef'> q q] af[ <c' ef'> q q] |
    bf16[ <df' ef'> q q] bf[ <df' ef'> q q] bf[ <df' ef'> q q] |
    df'16[ <ef' g' bf'> q q] df'[ <ef' g' bf'> q q]
      df'[ <ef' g' bf'> q q] |
  }
>>